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

Last change on this file since 3775 was 3775, checked in by Eric.Larour, 15 years ago

Created include.h header file

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