ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/poly_occ/src/poly_affiche.h
Revision: 1009
Committed: Mon Mar 25 16:40:06 2019 UTC (6 years, 1 month ago) by francois
Content type: text/plain
File size: 365 byte(s)
Log Message:
ajout de fichier pour les polycristaux (ajout temporaire)

File Contents

# User Rev Content
1 francois 1009 #ifndef _POLY_AFFICHE_
2     #define _POLY_AFFICHE_
3    
4    
5    
6    
7    
8     class POLY_AFFICHE
9     {
10     public:
11     POLY_AFFICHE();
12     virtual ~POLY_AFFICHE();
13    
14     typedef void fonction_affiche(char *);
15     virtual void affiche(char *mess);
16     virtual void active_affichage(fonction_affiche *fonc);
17    
18    
19    
20     protected:
21     fonction_affiche *affiche2;
22     int affichageactif;
23    
24    
25     };
26    
27    
28    
29    
30    
31    
32    
33    
34     #endif