ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/reconstruction/src/rec_contour.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_Contour.h
File size: 767 byte(s)
Log Message:

File Contents

# User Rev Content
1 5 #ifndef Rec_ContourH
2     #define Rec_ContourH
3    
4    
5     #include "Rec_FACE.h"
6    
7     //------------------------------------------------------------------------------
8    
9     #ifdef WINDOWS_VERSION
10     #ifdef BUILT_DLL_RECONSTRUCTION
11     #define DLLPORTRECONSTRUCTION __declspec(dllexport)
12     #else
13     #define DLLPORTRECONSTRUCTION __declspec(dllimport)
14     #endif
15     #else
16     #define DLLPORTRECONSTRUCTION
17     #endif
18    
19    
20    
21     class DLLPORTRECONSTRUCTION REC_CONTOUR : public REC_FACE
22    
23     {
24     public:
25     REC_CONTOUR(FEM_MAILLAGE* fem_mai0,FEM_MAILLAGE *fem_mai1, int Idealise, int test, int* faces);
26    
27     virtual ~REC_CONTOUR();
28    
29     void REC_CONTOUR::Reconstruire(MG_BOUCLE* Boucle);
30     void REC_CONTOUR::Enregistrer(char *fich);
31    
32     private:
33    
34    
35    
36     } ;
37    
38     #endif
39    
40