1 |
//------------------------------------------------------------ |
2 |
//------------------------------------------------------------ |
3 |
// MAGiC |
4 |
// Jean Christophe Cuilli�re et Vincent FRANCOIS |
5 |
// D�partement de G�nie M�canique - UQTR |
6 |
//------------------------------------------------------------ |
7 |
// Le projet MAGIC est un projet de recherche du d�partement |
8 |
// de g�nie m�canique de l'Universit� du Qu�bec � |
9 |
// Trois Rivi�res |
10 |
// Les librairies ne peuvent �tre utilis�es sans l'accord |
11 |
// des auteurs (contact : francois@uqtr.ca) |
12 |
//------------------------------------------------------------ |
13 |
//------------------------------------------------------------ |
14 |
// |
15 |
// mailleur.h |
16 |
// |
17 |
//------------------------------------------------------------ |
18 |
//------------------------------------------------------------ |
19 |
// COPYRIGHT 2000 |
20 |
// Version du 02/03/2006 � 11H23 |
21 |
//------------------------------------------------------------ |
22 |
//------------------------------------------------------------ |
23 |
#ifndef _MAILLEUR_ |
24 |
#define _MAILLEUR_ |
25 |
|
26 |
#ifdef WINDOWS_VERSION |
27 |
#ifdef BUILT_DLL_MAILLEUR |
28 |
#define DLLPORTMAIL __declspec(dllexport) |
29 |
#else |
30 |
#define DLLPORTMAIL __declspec(dllimport) |
31 |
#endif |
32 |
#else |
33 |
#define DLLPORTMAIL |
34 |
#endif |
35 |
|
36 |
|
37 |
#include <stdlib.h> |
38 |
#include <string> |
39 |
|
40 |
class DLLPORTMAIL MAILLEUR |
41 |
{ |
42 |
public : |
43 |
MAILLEUR(class OT_CPU* comp=NULL); |
44 |
MAILLEUR(MAILLEUR &mdd); |
45 |
virtual ~MAILLEUR(); |
46 |
static double priorite_metrique; |
47 |
//virtual void maille(class MG_GROUPE_TOPOLOGIQUE* mggt=NULL) = 0; |
48 |
void active_affichage(void (*fonc)(char*)); |
49 |
|
50 |
void refresh(void); |
51 |
void (*affiche2)(char *mess); |
52 |
int affichageactif; |
53 |
|
54 |
void affiche(char *mess); |
55 |
|
56 |
static double epsilon; |
57 |
static double distance_maximale; |
58 |
protected: |
59 |
void ajouter_etape_cpu(std::string nom); |
60 |
OT_CPU* compteur; |
61 |
|
62 |
}; |
63 |
|
64 |
|
65 |
|
66 |
|
67 |
|
68 |
|
69 |
#endif |