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 |
968 |
|
16 |
|
|
int cumuler_post_traitement(char* fichier_liste_ves, |
17 |
|
|
std::vector<OT_PARAMETRES*> &vector_params_analyse, |
18 |
|
|
char* dossier_resultat, |
19 |
|
|
bool avec_graph=false); |
20 |
couturad |
919 |
|
21 |
couturad |
951 |
void active_affichage(fonction_affiche *fonc); |
22 |
|
|
void affiche(char *message); |
23 |
|
|
protected: |
24 |
couturad |
930 |
|
25 |
couturad |
951 |
int affichageactif; |
26 |
|
|
fonction_affiche *fonc_affiche; |
27 |
|
|
}; |
28 |
|
|
|
29 |
couturad |
968 |
#endif |