ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/reconstruction/src/rec_sommet.h
Revision: 740
Committed: Wed Sep 30 22:24:50 2015 UTC (9 years, 7 months ago) by couturad
Content type: text/plain
File size: 753 byte(s)
Log Message:
Ajout d'assemblage dans un arbre caractéristique
Modification de la gestion des id de occ avec retro-compatibilité
script adaptable au assemblage

File Contents

# User Rev Content
1 5 #ifndef Rec_sommetH
2     #define Rec_sommetH
3    
4    
5 louhichi 211
6 francois 481 #include "rec_brep.h"
7 5 #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 couturad 740 REC_SOMMET(FEM_MAILLAGE* mgmai, int Idealise, OCC_FONCTION_RECONSTRUCTION& 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