MAGiC  V5.0
Mailleurs Automatiques de Géometries intégrés à la Cao
mstruct_analyse_erosion.h
Aller à la documentation de ce fichier.
1 //####//------------------------------------------------------------
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_analyse_erosion.h
15 //####//
16 //####//------------------------------------------------------------
17 //####//------------------------------------------------------------
18 //####// COPYRIGHT 2000-2024
19 //####// jeu 13 jun 2024 11:58:57 EDT
20 //####//------------------------------------------------------------
21 //####//------------------------------------------------------------
22 #ifndef _MSTRUCT_ANALYSE_EROSION_
23 #define _MSTRUCT_ANALYSE_EROSION_
24 #include "mstruct_analyse.h"
25 #include <vector>
27 {
28 public:
30  MSTRUCT_ANALYSE_EROSION(std::string identifiant,double epaisseur_couche,std::string nom_groupe_forme="",BOITE_3D* boite_3d=NULL);
31  MSTRUCT_ANALYSE_EROSION(std::string identifiant,MSTRUCT_ANALYSE* analyse_initiale,long nb_couche,double epaisseur_couche);
33  virtual double get_epaisseur_couche(void);
34  virtual long get_nb_analyse(void);
35  virtual int ajouter_analyse(MSTRUCT_ANALYSE* analyse);
36  virtual MSTRUCT_ANALYSE* get_premiere_analyse(std::vector<MSTRUCT_ANALYSE*>::iterator &it);
37  virtual MSTRUCT_ANALYSE* get_suivante_analyse(std::vector<MSTRUCT_ANALYSE*>::iterator &it);
38  virtual MSTRUCT_ANALYSE* get_analyse(long num);
39  virtual long get_type(void);
40  virtual void executer(void);
41  virtual void exporter(std::ofstream& ofstrm, long i, bool avec_entete=false, bool avec_graph=false, char* prefix_graph = (char*)"");
42  virtual void enregistrer(std::ofstream& ofstrm);
43  virtual void ouvrir(std::ifstream& ifstrm);
44  virtual void affiche_contenu(fonction_affiche *fonc);
45 protected:
46 
48  std::vector<MSTRUCT_ANALYSE*> m_vector_analyse;
49 };
50 
51 #endif
virtual MSTRUCT_ANALYSE * get_suivante_analyse(std::vector< MSTRUCT_ANALYSE * >::iterator &it)
virtual double get_epaisseur_couche(void)
virtual int ajouter_analyse(MSTRUCT_ANALYSE *analyse)
virtual void affiche_contenu(fonction_affiche *fonc)
virtual void enregistrer(std::ofstream &ofstrm)
virtual void exporter(std::ofstream &ofstrm, long i, bool avec_entete=false, bool avec_graph=false, char *prefix_graph=(char *)"")
std::vector< MSTRUCT_ANALYSE * > m_vector_analyse
virtual MSTRUCT_ANALYSE * get_premiere_analyse(std::vector< MSTRUCT_ANALYSE * >::iterator &it)
virtual MSTRUCT_ANALYSE * get_analyse(long num)
virtual void ouvrir(std::ifstream &ifstrm)
void fonction_affiche(char *)
Definition: fct_taille.h:28