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

File Contents

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