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