ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/reconstruction/src/rec_arete.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_arete.h
File size: 784 byte(s)
Log Message:

File Contents

# User Rev Content
1 5 #ifndef Rec_areteH
2     #define Rec_areteH
3    
4    
5     #include <atl\atlmod.h>
6     #include "Rec_CONTOUR.h"
7    
8     //------------------------------------------------------------------------------
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     REC_ARETE(FEM_MAILLAGE* fem_mai0,FEM_MAILLAGE *fem_mai1, int Idealise, int test, int* faces);
25    
26     virtual ~REC_ARETE();
27    
28     void REC_ARETE::Reconstruire(MG_COARETE* coArete);
29     void REC_ARETE::Enregistrer(char *fich);
30    
31     private:
32    
33    
34    
35    
36     } ;
37    
38     #endif
39    
40