ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/aster/src/mgaster.h
Revision: 597
Committed: Tue Nov 18 19:44:39 2014 UTC (10 years, 5 months ago) by mejrim
Content type: text/plain
File size: 650 byte(s)
Log Message:
ajout du thermique dans l'exportation aster

File Contents

# User Rev Content
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 mejrim 597 virtual int calcule(class FEM_MAILLAGE* fem,char *nometude,int typeetude,char *code=NULL,bool avecenreg=true);
24 francois 326
25     protected:
26     void (*affiche)(char *mess);
27     int affichageactif;
28     };
29    
30    
31    
32    
33    
34    
35    
36     #endif