ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/geometrie/src/vct_courbe.h
Revision: 283
Committed: Tue Sep 13 21:11:20 2011 UTC (13 years, 8 months ago) by francois
Content type: text/plain
File size: 748 byte(s)
Log Message:
structure de l'écriture

File Contents

# User Rev Content
1 francois 283 //---------------------------------------------------------------------------
2    
3     #ifndef vct_courbeH
4     #define vct_courbeH
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    
18    
19     #include<vector>
20     #include "ot_doubleprecision.h"
21     #include "vct_element_geometrique.h"
22     #include <ostream>
23     #include"ot_tenseur.h"
24     #include "vct.h"
25    
26     class DLLPORTGEOMETRIE VCT_COURBE:public VCT_ELEMENT_GEOMETRIQUE
27     {
28     public:
29    
30     VCT_COURBE(class MG_COURBE* elemgeo);
31     VCT_COURBE(VCT_COURBE& mdd);
32     virtual ~VCT_COURBE();
33    
34    
35     protected:
36    
37    
38     };
39    
40    
41    
42     #endif