MAGiC  V5.0
Mailleurs Automatiques de Géometries intégrés à la Cao
poly_affiche.cpp
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.cpp
15 //####//
16 //####//------------------------------------------------------------
17 //####//------------------------------------------------------------
18 //####// COPYRIGHT 2000-2024
19 //####// jeu 13 jun 2024 11:54:00 EDT
20 //####//------------------------------------------------------------
21 //####//------------------------------------------------------------
22 #include "poly_affiche.h"
23 
24 
25 
26 POLY_AFFICHE::POLY_AFFICHE():affichageactif(0)
27 {
28 }
29 
31 {
32 
33 }
34 
35 
37 {
38  affiche2=fonc;
40 }
41 
42 void POLY_AFFICHE::affiche(char *mess)
43 {
44  if (affichageactif==1) affiche2(mess);
45 }
POLY_AFFICHE::affichageactif
int affichageactif
Definition: poly_affiche.h:43
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.h
POLY_AFFICHE::affiche2
fonction_affiche * affiche2
Definition: poly_affiche.h:42
fonction_affiche
void fonction_affiche(char *)
Definition: fct_taille.h:28
POLY_AFFICHE::POLY_AFFICHE
POLY_AFFICHE()
Definition: poly_affiche.cpp:26