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 |
|
|
|