ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/toIbrep/src/toibrep.h
Revision: 104
Committed: Thu Jun 5 09:58:41 2008 UTC (17 years ago) by francois
Content type: text/plain
Original Path: magic/lib/toxfem/toxfem/src/toxfem.h
File size: 609 byte(s)
Log Message:
test de transfert vers xfem. projet uniquement present sur linux

File Contents

# User Rev Content
1 francois 104 #ifndef _TOXFEM_
2     #define _TOXFEM_
3    
4    
5    
6     #ifdef WINDOWS_VERSION
7     #ifdef BUILT_DLL_TOXFEM
8     #define DLLPORTTOXFEM __declspec(dllexport)
9     #else
10     #define DLLPORTTOXFEM __declspec(dllimport)
11     #endif
12     #else
13     #define DLLPORTTOXFEM
14     #endif
15    
16     #include <string>
17    
18    
19     class DLLPORTTOXFEM toxfem
20     {
21     public:
22     toxfem();
23     ~toxfem();
24     int estdansletetra(class MG_TETRA *tet,double x,double y, double z);
25     void importer(std::string nomfichier,class MagXchange* data);
26     double calculdist(double *n,double x,double y,double z,class MG_NOEUD* noeud,class MG_TETRA* tet);
27    
28    
29    
30    
31     private:
32    
33    
34    
35     };
36    
37    
38    
39    
40    
41    
42     #endif