ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/microstructure/src/mstruct_ver.h
Revision: 1158
Committed: Thu Jun 13 22:18:49 2024 UTC (11 months, 1 week ago) by francois
Content type: text/plain
File size: 1710 byte(s)
Log Message:
compatibilité Ubuntu 22.04
Suppression des refeences à Windows
Ajout d'une banière

File Contents

# User Rev Content
1 francois 1158 //####//------------------------------------------------------------
2     //####//------------------------------------------------------------
3     //####// MAGiC
4     //####// Jean Christophe Cuilliere et Vincent FRANCOIS
5     //####// Departement de Genie Mecanique - UQTR
6     //####//------------------------------------------------------------
7     //####// MAGIC est un projet de recherche de l equipe ERICCA
8     //####// du departement de genie mecanique de l Universite du Quebec a Trois Rivieres
9     //####// http://www.uqtr.ca/ericca
10     //####// http://www.uqtr.ca/
11     //####//------------------------------------------------------------
12     //####//------------------------------------------------------------
13     //####//
14     //####// mstruct_ver.h
15     //####//
16     //####//------------------------------------------------------------
17     //####//------------------------------------------------------------
18     //####// COPYRIGHT 2000-2024
19     //####// jeu 13 jun 2024 11:58:57 EDT
20     //####//------------------------------------------------------------
21     //####//------------------------------------------------------------
22 couturad 919 #ifndef _MSTRUCT_VER_
23     #define _MSTRUCT_VER_
24 couturad 926 #include "mstruct_analyse.h"
25 couturad 919 #include "ot_parametres.h"
26 couturad 926 #include <map>
27 couturad 919
28 couturad 951
29     typedef void fonction_affiche(char *);
30    
31     class MSTRUCT_VER
32 couturad 919 {
33 couturad 951 public:
34     MSTRUCT_VER(void);
35     ~MSTRUCT_VER(void);
36 couturad 968
37     int cumuler_post_traitement(char* fichier_liste_ves,
38     std::vector<OT_PARAMETRES*> &vector_params_analyse,
39     char* dossier_resultat,
40     bool avec_graph=false);
41 couturad 919
42 couturad 951 void active_affichage(fonction_affiche *fonc);
43     void affiche(char *message);
44     protected:
45 couturad 930
46 couturad 951 int affichageactif;
47     fonction_affiche *fonc_affiche;
48     };
49    
50 couturad 968 #endif