ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/reconstruction/src/rec_brep.h
Revision: 253
Committed: Tue Jul 13 19:40:46 2010 UTC (14 years, 10 months ago) by francois
Content type: text/plain
Original Path: magic/lib/reconstruction/src/Rec_BREP.h
File size: 784 byte(s)
Log Message:
changement de hiearchie et utilisation de ccmake + mise a jour

File Contents

# User Rev Content
1 5 #ifndef Rec_BREPH
2     #define Rec_BREPH
3    
4    
5     //------------------------------------------------------------------------------
6    
7     #ifdef WINDOWS_VERSION
8     #ifdef BUILT_DLL_RECONSTRUCTION
9     #define DLLPORTRECONSTRUCTION __declspec(dllexport)
10     #else
11     #define DLLPORTRECONSTRUCTION __declspec(dllimport)
12     #endif
13     #else
14     #define DLLPORTRECONSTRUCTION
15     #endif
16    
17    
18 louhichi 211 #include "OCC_fonction.h"
19    
20    
21    
22 5 class DLLPORTRECONSTRUCTION REC_BREP
23     {
24     public:
25 louhichi 211
26    
27    
28     REC_BREP(class FEM_MAILLAGE* fem_mai, int Idealise, OCC_FONCTION& fonc);
29 5 virtual ~REC_BREP();
30    
31    
32    
33 louhichi 211 void Reconstruire(double coef=1.0);
34     virtual void Enregistrer(char *path);
35    
36    
37    
38 5 protected:
39    
40 louhichi 211 FEM_MAILLAGE* fem_maillage;
41 5 int Idealiser;
42    
43    
44 louhichi 211 OCC_FONCTION& fonction;
45 5
46 louhichi 211
47 5 } ;
48     #endif
49    
50