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

some changes in boundary entity.

[[Imported from SVN: r799]]
parent 83659e8c
No related branches found
No related tags found
No related merge requests found
......@@ -452,12 +452,24 @@ namespace Dune {
{
public:
//! return boundary identifier
BoundaryType type ();
BoundaryType type ()
{
std::cerr << "WARNING: BoundaryEntity::type(): default implementation called!\n";
return Dirichlet;
}
int id ();
int id ()
{
std::cerr << "WARNING: BoundaryEntity::id(): default implementation called!\n";
return -1 ;
}
//! return true if ghost cell was filled
bool hasGeometry ();
bool hasGeometry ()
{
std::cerr << "WARNING: BoundaryEntity::hasGeometry(): default implementation called!\n";
return false;
}
//! return geometry of ghostcell
ElementImp<dim,dimworld> & geometry ();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment