| 1 |
souaissa |
66 |
//---------------------------------------------------------------------------
|
| 2 |
|
|
|
| 3 |
|
|
#ifndef vct_sommetH
|
| 4 |
|
|
#define vct_sommetH
|
| 5 |
|
|
//---------------------------------------------------------------------------
|
| 6 |
|
|
#ifdef WINDOWS_VERSION
|
| 7 |
|
|
#ifdef BUILT_DLL_GEOMETRIE
|
| 8 |
|
|
#define DLLPORTGEOMETRIE __declspec(dllexport)
|
| 9 |
|
|
#else
|
| 10 |
|
|
#define DLLPORTGEOMETRIE __declspec(dllimport)
|
| 11 |
|
|
#endif
|
| 12 |
|
|
#else
|
| 13 |
|
|
#define DLLPORTGEOMETRIE
|
| 14 |
|
|
#endif
|
| 15 |
|
|
|
| 16 |
francois |
169 |
#include <vector>
|
| 17 |
souaissa |
66 |
#include "tpl_liste_entite.h"
|
| 18 |
|
|
#include "ot_doubleprecision.h"
|
| 19 |
|
|
#include "vct_element_topologique.h"
|
| 20 |
|
|
#include "ot_mathematique.h"
|
| 21 |
souaissa |
69 |
#include"ot_tenseur.h"
|
| 22 |
|
|
#include "vct.h"
|
| 23 |
souaissa |
66 |
|
| 24 |
|
|
class DLLPORTGEOMETRIE VCT_SOMMET:public VCT_ELEMENT_TOPOLOGIQUE
|
| 25 |
|
|
{
|
| 26 |
|
|
public:
|
| 27 |
|
|
|
| 28 |
|
|
VCT_SOMMET (class MG_SOMMET* face);
|
| 29 |
|
|
VCT_SOMMET (VCT_SOMMET& mdd);
|
| 30 |
|
|
virtual ~VCT_SOMMET();
|
| 31 |
|
|
|
| 32 |
|
|
|
| 33 |
souaissa |
69 |
|
| 34 |
francois |
253 |
|
| 35 |
|
|
|
| 36 |
souaissa |
66 |
};
|
| 37 |
|
|
|
| 38 |
|
|
|
| 39 |
|
|
|
| 40 |
|
|
|
| 41 |
|
|
|
| 42 |
|
|
#endif
|