ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/reconstruction/src/rec_contour.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_Contour.h
File size: 750 byte(s)
Log Message:
changement de hiearchie et utilisation de ccmake + mise a jour

File Contents

# User Rev Content
1 5 #ifndef Rec_ContourH
2     #define Rec_ContourH
3    
4    
5 louhichi 211 #include "Rec_face.h"
6 5
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 louhichi 211 REC_CONTOUR(FEM_MAILLAGE* fem_mai, int Idealise, OCC_FONCTION& fonc, int test, int* faces);
26 5
27     virtual ~REC_CONTOUR();
28    
29 louhichi 211 void Reconstruire(MG_BOUCLE* Boucle, double coef);
30     void Enregistrer(char *fich);
31 5
32     private:
33    
34    
35    
36     } ;
37    
38     #endif
39    
40