ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/optimisation/src/mgaster.h
Revision: 382
Committed: Wed Dec 19 22:18:06 2012 UTC (12 years, 4 months ago) by gervaislavoie
Content type: text/plain
File size: 636 byte(s)
Log Message:
Methode du mouvement normale  et jacobien 3D dans fem_triangle3

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 gervaislavoie 382 virtual int calcule(class FEM_MAILLAGE* fem,char *nometude,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