ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/reconstruction/src/rec_face.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: 806 byte(s)
Log Message:
unification de la facon d'ecrire les fichiers tous en minuscules

File Contents

# User Rev Content
1 5 #ifndef Rec_faceH
2     #define Rec_faceH
3    
4    
5     #include "mg_maillage.h"
6     #include "mg_geometrie.h"
7 francois 481 #include "rec_brep.h"
8 5
9     //------------------------------------------------------------------------------
10    
11     #ifdef WINDOWS_VERSION
12     #ifdef BUILT_DLL_RECONSTRUCTION
13     #define DLLPORTRECONSTRUCTION __declspec(dllexport)
14     #else
15     #define DLLPORTRECONSTRUCTION __declspec(dllimport)
16     #endif
17     #else
18     #define DLLPORTRECONSTRUCTION
19     #endif
20    
21    
22     class DLLPORTRECONSTRUCTION REC_FACE : public REC_BREP
23     {
24     public:
25 louhichi 211 REC_FACE(FEM_MAILLAGE* fem_mai, int Idealise, OCC_FONCTION& fonc, int test, int* faces);
26 5
27     virtual ~REC_FACE();
28    
29 louhichi 211 void Reconstruire(MG_FACE* face, double coef);
30     void Enregistrer(char *path);
31 5
32     protected:
33    
34     int testo;
35     int* faceso;
36    
37     } ;
38    
39     #endif
40    
41