ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/reconstruction/src/rec_brep.h
Revision: 5
Committed: Tue Jun 12 20:26:34 2007 UTC (17 years, 11 months ago)
Content type: text/plain
Original Path: magic/lib/reconstruction/reconstruction/src/Rec_BREP.h
File size: 763 byte(s)
Log Message:

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     class DLLPORTRECONSTRUCTION REC_BREP
19     {
20     public:
21     REC_BREP(class FEM_MAILLAGE* fem_mai0, class FEM_MAILLAGE* fem_mai1, int Idealise);
22     virtual ~REC_BREP();
23    
24     void REC_BREP::Reconstruire(void);
25     virtual void REC_BREP::Enregistrer(char *path);
26    
27    
28     protected:
29    
30     FEM_MAILLAGE* fem_maillage0;
31     FEM_MAILLAGE* fem_maillage1;
32     int Idealiser;
33    
34    
35    
36     } ;
37     #endif
38    
39