ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/mtu/src/vct_volume.h
Revision: 1114
Committed: Wed May 3 18:29:42 2023 UTC (2 years ago) by francois
Content type: text/plain
File size: 721 byte(s)
Log Message:
Étape 2  : remplacement du nom geometrie par mtu pour corresponde à la publi de mtu

File Contents

# User Rev Content
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