ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/optimisation/src/mgaster.h
Revision: 326
Committed: Mon Mar 12 15:34:00 2012 UTC (13 years, 2 months ago) by francois
Content type: text/plain
File size: 624 byte(s)
Log Message:
integration du calcul par code aster dans magic. Seul les volumes sont faits

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     virtual void calcule_volume(class FEM_MAILLAGE* fem,char *nometude,char *code=NULL);
24    
25     protected:
26     void (*affiche)(char *mess);
27     int affichageactif;
28     };
29    
30    
31    
32    
33    
34    
35    
36     #endif