source: issm/trunk/src/c/Bamgx/objects/GeometricalSubDomain.h@ 3243

Last change on this file since 3243 was 3243, checked in by Mathieu Morlighem, 15 years ago

removed some typedefs

File size: 532 bytes
Line 
1#ifndef _GEOMETRICALSUBDOMAIN_H_
2#define _GEOMETRICALSUBDOMAIN_H_
3
4#include "../../objects/objects.h"
5#include "../../shared/shared.h"
6#include "../../include/macros.h"
7#include "../../toolkits/toolkits.h"
8
9#include "../meshtype.h"
10#include "GeometricalEdge.h"
11
12namespace bamg {
13
14 //classes
15 class Geometry;
16
17 class GeometricalSubDomain {
18 public:
19 GeometricalEdge *edge;
20 int sens; // -1 or 1
21 long ref;
22
23 //Inline methods
24 inline void Set(const GeometricalSubDomain &,const Geometry & ,const Geometry &);
25 };
26
27}
28#endif
Note: See TracBrowser for help on using the repository browser.