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
|