ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/optimisation/src/mgaster.h
Revision: 327
Committed: Tue Mar 13 14:18:25 2012 UTC (13 years, 2 months ago) by francois
Content type: text/plain
File size: 617 byte(s)
Log Message:
Calcul aster integre pour les volumes et pour les coques

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 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