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