1 |
francois |
283 |
//--------------------------------------------------------------------------- |
2 |
|
|
|
3 |
|
|
#ifndef vct_volumeH |
4 |
|
|
#define vct_volumeH |
5 |
|
|
//--------------------------------------------------------------------------- |
6 |
|
|
|
7 |
|
|
#include <vector> |
8 |
|
|
|
9 |
|
|
|
10 |
|
|
#include "ot_doubleprecision.h" |
11 |
|
|
#include "vct_element_topologique.h" |
12 |
|
|
#include "ot_tenseur.h" |
13 |
|
|
#include "vct.h" |
14 |
|
|
|
15 |
|
|
#ifdef WINDOWS_VERSION |
16 |
|
|
#ifdef BUILT_DLL_GEOMETRIE |
17 |
|
|
#define DLLPORTGEOMETRIE __declspec(dllexport) |
18 |
|
|
#else |
19 |
|
|
#define DLLPORTGEOMETRIE __declspec(dllimport) |
20 |
|
|
#endif |
21 |
|
|
#else |
22 |
|
|
#define DLLPORTGEOMETRIE |
23 |
|
|
#endif |
24 |
|
|
|
25 |
|
|
|
26 |
|
|
|
27 |
|
|
class DLLPORTGEOMETRIE VCT_VOLUME:public VCT_ELEMENT_TOPOLOGIQUE |
28 |
|
|
{ |
29 |
|
|
public: |
30 |
|
|
|
31 |
|
|
VCT_VOLUME (class MG_VOLUME* volume); |
32 |
|
|
VCT_VOLUME (VCT_VOLUME& mdd); |
33 |
|
|
virtual ~VCT_VOLUME(); |
34 |
|
|
|
35 |
|
|
|
36 |
|
|
}; |
37 |
|
|
|
38 |
|
|
|
39 |
|
|
#endif |
40 |
|
|
|