ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/geometrie/src/vct_courbe.h
Revision: 253
Committed: Tue Jul 13 19:40:46 2010 UTC (14 years, 10 months ago) by francois
Content type: text/plain
File size: 826 byte(s)
Log Message:
changement de hiearchie et utilisation de ccmake + mise a jour

File Contents

# User Rev Content
1 souaissa 66 //---------------------------------------------------------------------------
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 francois 169 #include<vector>
20 souaissa 66 #include "ot_doubleprecision.h"
21     #include "vct_element_geometrique.h"
22     #include <ostream>
23 souaissa 69 #include"ot_tenseur.h"
24     #include "vct.h"
25 souaissa 66
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 souaissa 69 protected:
36 souaissa 66
37 souaissa 69
38 souaissa 66 };
39    
40    
41    
42     #endif