1 |
francois |
326 |
#ifndef mgasterH |
2 |
|
|
#define mgasterH |
3 |
|
|
|
4 |
|
|
#ifdef WINDOWS_VERSION |
5 |
|
|
#ifdef BUILT_DLL_OPTIMISATION |
6 |
|
|
#define DLLPORTOPTIMISATION __declspec(dllexport) |
7 |
|
|
#else |
8 |
|
|
#define DLLPORTOPTIMISATION __declspec(dllimport) |
9 |
|
|
#endif |
10 |
|
|
#else |
11 |
|
|
#define DLLPORTOPTIMISATION |
12 |
|
|
#endif |
13 |
|
|
#include <stdlib.h> |
14 |
|
|
|
15 |
|
|
class DLLPORTOPTIMISATION MGASTER |
16 |
|
|
{ |
17 |
|
|
public: |
18 |
|
|
MGASTER(); |
19 |
|
|
MGASTER(MGASTER &mdd); |
20 |
|
|
virtual ~MGASTER(); |
21 |
|
|
|
22 |
|
|
virtual void active_affichage(void (*fonc)(char*)); |
23 |
francois |
327 |
virtual void calcule(class FEM_MAILLAGE* fem,char *nometude,char *code=NULL); |
24 |
francois |
326 |
|
25 |
|
|
protected: |
26 |
|
|
void (*affiche)(char *mess); |
27 |
|
|
int affichageactif; |
28 |
|
|
}; |
29 |
|
|
|
30 |
|
|
|
31 |
|
|
|
32 |
|
|
|
33 |
|
|
|
34 |
|
|
|
35 |
|
|
|
36 |
|
|
#endif |