Revision: | 1122 |
Committed: | Tue Jul 4 16:04:48 2023 UTC (2 years, 1 month ago) by francois |
File size: | 411 byte(s) |
Log Message: | encore un bug du dernier commit |
# | Content |
---|---|
1 | #include "magic_affiche.h" |
2 | |
3 | |
4 | |
5 | |
6 | MAGIC_AFFICHE::MAGIC_AFFICHE():affichageactif(0) |
7 | { |
8 | } |
9 | |
10 | |
11 | |
12 | MAGIC_AFFICHE::MAGIC_AFFICHE ( MAGIC_AFFICHE& mdd ):affichageactif(mdd.affichageactif) |
13 | { |
14 | } |
15 | |
16 | |
17 | MAGIC_AFFICHE::~MAGIC_AFFICHE() |
18 | { |
19 | } |
20 | |
21 | |
22 | void MAGIC_AFFICHE::affiche(char *mess) |
23 | { |
24 | if (affichageactif==1) affiche2(mess); |
25 | } |
26 | |
27 | |
28 | void MAGIC_AFFICHE::active_affichage(fonction_affiche *fonc) |
29 | { |
30 | affiche2=fonc; |
31 | affichageactif=1; |
32 | } |