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