ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/reconstruction/src/rec_sommet.h
Revision: 5
Committed: Tue Jun 12 20:26:34 2007 UTC (17 years, 11 months ago)
Content type: text/plain
Original Path: magic/lib/reconstruction/reconstruction/src/Rec_sommet.h
File size: 773 byte(s)
Log Message:

File Contents

# User Rev Content
1 5 #ifndef Rec_sommetH
2     #define Rec_sommetH
3    
4    
5     #include <atl\atlmod.h>
6     #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     REC_SOMMET(FEM_MAILLAGE* mgmai,FEM_MAILLAGE *mgmai1, int Idealise);
26    
27     virtual ~REC_SOMMET();
28    
29     void REC_SOMMET::Reconstruire(MG_SOMMET* Sommet);
30     void REC_SOMMET::Enregistrer(char *path);
31    
32     private:
33    
34     } ;
35    
36     #endif
37    
38