ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/solveur/src/sl_localisation.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: 883 byte(s)
Log Message:
changement de hiearchie et utilisation de ccmake + mise a jour

File Contents

# User Rev Content
1 5 //---------------------------------------------------------------------------
2    
3     #ifndef sl_localisationH
4     #define sl_localisationH
5     //---------------------------------------------------------------------------
6    
7     #include "fem_maillage.h"
8    
9     #ifdef WINDOWS_VERSION
10     #ifdef BUILT_DLL_SOLVEUR
11     #define DLLPORTSOLVEUR __declspec(dllexport)
12     #else
13     #define DLLPORTSOLVEUR __declspec(dllimport)
14     #endif
15     #else
16     #define DLLPORTSOLVEUR
17     #endif
18    
19    
20     class DLLPORTSOLVEUR SL_LOCALISATION
21     {
22     public:
23    
24     SL_LOCALISATION();
25     virtual ~SL_LOCALISATION();
26    
27     virtual void get_localisation(int* tab_in,int* tab_out,int t_tab_inp);
28     virtual void get_localisation_contrainte(int* tab_inp,int* tab_out,int t_tab_inp);
29     virtual void get_localisation_contrainte_equiv(FEM_MAILLAGE*mai,int* tab,int* ttab,int taille_tab);
30    
31     protected:
32    
33     };
34    
35    
36     #endif