ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/reconstruction/src/rec_sommet.h
Revision: 211
Committed: Tue Aug 18 19:56:01 2009 UTC (15 years, 8 months ago) by louhichi
Content type: text/plain
Original Path: magic/lib/reconstruction/reconstruction/src/Rec_sommet.h
File size: 738 byte(s)
Log Message:
Mise a jour sous linux de la reconstruction de modele. These Borhen. OCC obligatoire.

File Contents

# User Rev Content
1 5 #ifndef Rec_sommetH
2     #define Rec_sommetH
3    
4    
5 louhichi 211
6 5 #include "Rec_BREP.h"
7     #include "mg_sommet.h"
8    
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_SOMMET: public REC_BREP
23     {
24     public:
25 louhichi 211 REC_SOMMET(FEM_MAILLAGE* mgmai, int Idealise, OCC_FONCTION& fonc);
26 5
27     virtual ~REC_SOMMET();
28    
29 louhichi 211 void Reconstruire(MG_SOMMET* Sommet, double coef);
30     void Enregistrer(char *path);
31 5
32     private:
33    
34     } ;
35    
36     #endif
37    
38