1 |
souaissa |
66 |
//---------------------------------------------------------------------------
|
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 |
francois |
169 |
#include <vector>
|
18 |
souaissa |
66 |
#include "vct_element_geometrique.h"
|
19 |
|
|
#include "ot_doubleprecision.h"
|
20 |
souaissa |
71 |
#include "ot_mathematique.h"
|
21 |
francois |
169 |
#include <ostream>
|
22 |
souaissa |
71 |
#include "ot_tenseur.h"
|
23 |
souaissa |
69 |
#include "vct.h"
|
24 |
souaissa |
66 |
|
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 |
souaissa |
69 |
|
34 |
francois |
253 |
|
35 |
souaissa |
66 |
};
|
36 |
|
|
|
37 |
|
|
|
38 |
|
|
|
39 |
|
|
|
40 |
|
|
|
41 |
|
|
|
42 |
|
|
|
43 |
|
|
#endif
|