#ifndef _GEOMETRICALSUBDOMAIN_H_ #define _GEOMETRICALSUBDOMAIN_H_ #include "../../objects/objects.h" #include "../../shared/shared.h" #include "../../include/macros.h" #include "../../toolkits/toolkits.h" #include "../meshtype.h" #include "GeometricalEdge.h" namespace bamg { //classes class Geometry; class GeometricalSubDomain { public: GeometricalEdge *edge; int sens; // -1 or 1 Int4 ref; //Inline methods inline void Set(const GeometricalSubDomain &,const Geometry & ,const Geometry &); }; } #endif