Skip to content
Snippets Groups Projects
Commit d50835c6 authored by Mario Ohlberger's avatar Mario Ohlberger
Browse files

Added boundaryId in the specification of entity with codim=dim and codim=0.

Made copy constructor of geometry public.

[[Imported from SVN: r1775]]
parent 168e3c5d
No related branches found
No related tags found
No related merge requests found
......@@ -136,6 +136,9 @@ namespace Dune
int globalIndex () const { return realEntity.globalIndex(); }
//! Partition type attribute
PartitionType partitionType () const { return realEntity.partitionType(); }
/** \brief Id of the boundary which is associated with
the entity, returns 0 for inner entities, arbitrary int otherwise */
int boundaryId () const { return realEntity.boundaryId(); }
//! geometry of this entity
const Geometry& geometry () const { return realEntity.geometry(); }
......@@ -302,6 +305,9 @@ namespace Dune
int globalIndex () const { return realEntity.globalIndex(); }
//! Partition type attribute
PartitionType partitionType () const { return realEntity.partitionType(); }
/** \brief Id of the boundary which is associated with
the entity, returns 0 for inner entities, arbitrary int otherwise */
int boundaryId () const { return realEntity.boundaryId(); }
//! Geometry of this entity
const Geometry& geometry () const { return realEntity.geometry(); }
......
......@@ -112,7 +112,7 @@ namespace Dune
//! copy constructor from GeometryImp
explicit Geometry(const GeometryImp<mydim,cdim,GridImp> & e) : realGeometry(e) {};
protected:
//protected:
/** hide copy constructor */
Geometry(const Geometry& rhs) : realGeometry(rhs.realGeometry) {};
/** hide assignement operator */
......
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