1 |
couturad |
919 |
#ifndef _MSTRUCT_VER_ |
2 |
|
|
#define _MSTRUCT_VER_ |
3 |
couturad |
926 |
#include "mstruct_analyse.h" |
4 |
couturad |
919 |
#include "ot_parametres.h" |
5 |
couturad |
926 |
#include <map> |
6 |
couturad |
919 |
|
7 |
couturad |
951 |
|
8 |
|
|
typedef void fonction_affiche(char *); |
9 |
|
|
|
10 |
|
|
class MSTRUCT_VER |
11 |
couturad |
919 |
{ |
12 |
couturad |
951 |
public: |
13 |
|
|
MSTRUCT_VER(void); |
14 |
|
|
~MSTRUCT_VER(void); |
15 |
couturad |
919 |
|
16 |
couturad |
951 |
int exporter_analyse(char* fichier_liste_ves, |
17 |
couturad |
926 |
std::vector<OT_PARAMETRES*> &vector_params_analyse, |
18 |
couturad |
951 |
char* dossier_resultat); |
19 |
|
|
int cumuler_analyse(char* fichier_liste_ves, |
20 |
|
|
std::vector<OT_PARAMETRES*> &vector_params_analyse, |
21 |
|
|
char* dossier_resultat, |
22 |
|
|
bool avec_histogramme=false); |
23 |
|
|
int exporter_modules_mecaniques(char* fichier_liste_ves_spherique, |
24 |
|
|
char* fichier_liste_ves_deviatorique, |
25 |
|
|
std::vector<OT_PARAMETRES*> &vector_params_ver, |
26 |
|
|
char* dossier_resultat); |
27 |
|
|
int cumuler_modules_mecaniques(char* fichier_liste_ves_spherique, |
28 |
|
|
char* fichier_liste_ves_deviatorique, |
29 |
|
|
std::vector<OT_PARAMETRES*> &vector_params_ver, |
30 |
|
|
char* dossier_resultat, |
31 |
|
|
bool avec_histogramme=false); |
32 |
|
|
void active_affichage(fonction_affiche *fonc); |
33 |
|
|
void affiche(char *message); |
34 |
|
|
protected: |
35 |
couturad |
930 |
|
36 |
couturad |
951 |
int affichageactif; |
37 |
|
|
fonction_affiche *fonc_affiche; |
38 |
|
|
}; |
39 |
|
|
|
40 |
couturad |
919 |
#endif |