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