MAGiC  V5.0
Mailleurs Automatiques de Géometries intégrés à la Cao
poly_affiche.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 //####// poly_affiche.h
15 //####//
16 //####//------------------------------------------------------------
17 //####//------------------------------------------------------------
18 //####// COPYRIGHT 2000-2024
19 //####// jeu 13 jun 2024 11:54:00 EDT
20 //####//------------------------------------------------------------
21 //####//------------------------------------------------------------
22 #ifndef _POLY_AFFICHE_
23 #define _POLY_AFFICHE_
24 
25 
26 
27 
28 
30 {
31 public:
32  POLY_AFFICHE();
33  virtual ~POLY_AFFICHE();
34 
35  typedef void fonction_affiche(char *);
36  virtual void affiche(char *mess);
37  virtual void active_affichage(fonction_affiche *fonc);
38 
39 
40 
41 protected:
44 
45 
46 };
47 
48 
49 
50 
51 
52 
53 
54 
55 #endif
POLY_AFFICHE::affichageactif
int affichageactif
Definition: poly_affiche.h:43
POLY_AFFICHE::fonction_affiche
void fonction_affiche(char *)
Definition: poly_affiche.h:35
POLY_AFFICHE
Definition: poly_affiche.h:29
POLY_AFFICHE::~POLY_AFFICHE
virtual ~POLY_AFFICHE()
Definition: poly_affiche.cpp:30
POLY_AFFICHE::active_affichage
virtual void active_affichage(fonction_affiche *fonc)
Definition: poly_affiche.cpp:36
POLY_AFFICHE::affiche
virtual void affiche(char *mess)
Definition: poly_affiche.cpp:42
POLY_AFFICHE::affiche2
fonction_affiche * affiche2
Definition: poly_affiche.h:42
POLY_AFFICHE::POLY_AFFICHE
POLY_AFFICHE()
Definition: poly_affiche.cpp:26