Skip to content
Snippets Groups Projects
Commit d55f46c4 authored by Robert Klöfkorn's avatar Robert Klöfkorn
Browse files

added hasBackupRestoreFacilities, default is false;

[[Imported from SVN: r4263]]
parent d9eac059
Branches
Tags
No related merge requests found
......@@ -47,6 +47,12 @@ namespace Dune
static const bool v = false;
};
template<class Grid>
struct hasBackupRestoreFacilities
{
static const bool v = false;
};
/*
forward
Capabilities::Something<const Grid>
......@@ -84,6 +90,12 @@ namespace Dune
static const bool v = Dune::Capabilities::hasHangingNodes<Grid>::v;
};
template<class Grid>
struct hasBackupRestoreFacilities<const Grid>
{
static const bool v = Dune::Capabilities::hasBackupRestoreFacilities<Grid>::v;
};
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment