ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/reconstruction/src/rec_contour.h
Revision: 481
Committed: Tue Jan 28 16:10:58 2014 UTC (11 years, 3 months ago) by francois
Content type: text/plain
File size: 750 byte(s)
Log Message:
unification de la facon d'ecrire les fichiers tous en minuscules

File Contents

# User Rev Content
1 5 #ifndef Rec_ContourH
2     #define Rec_ContourH
3    
4    
5 francois 481 #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