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