1 |
|
5 |
//------------------------------------------------------------
|
2 |
|
|
//------------------------------------------------------------
|
3 |
|
|
// MAGiC
|
4 |
|
|
// Jean Christophe Cuilli�e et Vincent FRANCOIS
|
5 |
|
|
// D�artement de G�ie M�anique - UQTR
|
6 |
|
|
//------------------------------------------------------------
|
7 |
|
|
// Le projet MAGIC est un projet de recherche du d�artement
|
8 |
|
|
// de g�ie m�anique de l'Universit�du Qu�ec �
|
9 |
|
|
// Trois Rivi�es
|
10 |
|
|
// Les librairies ne peuvent �re utilis�s sans l'accord
|
11 |
|
|
// des auteurs (contact : francois@uqtr.ca)
|
12 |
|
|
//------------------------------------------------------------
|
13 |
|
|
//------------------------------------------------------------
|
14 |
|
|
//
|
15 |
|
|
// gestionversion.h
|
16 |
|
|
//
|
17 |
|
|
//------------------------------------------------------------
|
18 |
|
|
//------------------------------------------------------------
|
19 |
|
|
// COPYRIGHT 2000
|
20 |
|
|
// Version du 02/03/2006 �11H20
|
21 |
|
|
//------------------------------------------------------------
|
22 |
|
|
//------------------------------------------------------------
|
23 |
|
|
#ifndef _GESTIONVERSION_
|
24 |
|
|
#define _GESTIONVERSION_
|
25 |
|
|
|
26 |
|
|
|
27 |
|
|
|
28 |
|
|
#define BREP_SAT
|
29 |
|
|
#define BREP_STEP
|
30 |
|
|
|
31 |
francois |
112 |
#ifdef __BORLANDC__ |
32 |
|
|
#define BORLANDCPP |
33 |
|
|
#endif
|
34 |
|
|
#ifdef _MSC_VER |
35 |
|
|
#define VISUALCPPNET
|
36 |
|
|
#endif
|
37 |
|
|
#ifdef __GNUC__ |
38 |
|
|
#define GCC
|
39 |
|
|
#endif
|
40 |
|
5 |
|
41 |
|
|
|
42 |
|
|
#ifndef GCC
|
43 |
|
|
#define WINDOWS_VERSION
|
44 |
|
|
#define BREP_SLD
|
45 |
|
|
#endif
|
46 |
|
|
|
47 |
|
|
#ifdef BREP_SLD
|
48 |
|
|
#define BREP_STEP
|
49 |
|
|
#endif
|
50 |
|
|
|
51 |
|
|
|
52 |
francois |
78 |
#define VERSION "2008"
|
53 |
|
|
#define DATEVERSION "2002-2008"
|
54 |
|
5 |
|
55 |
|
|
#ifdef BREP_SAT
|
56 |
|
|
#define RSAT "1"
|
57 |
|
|
#else
|
58 |
|
|
#define RSAT "0"
|
59 |
|
|
#endif
|
60 |
|
|
#ifdef BREP_STEP
|
61 |
|
|
#define RSTEP "1"
|
62 |
|
|
#else
|
63 |
|
|
#define RSTEP "0"
|
64 |
|
|
#endif
|
65 |
|
|
#ifdef BREP_SLD
|
66 |
|
|
#define RSLD "1"
|
67 |
|
|
#else
|
68 |
|
|
#define RSLD "0"
|
69 |
|
|
#endif
|
70 |
|
|
|
71 |
|
|
|
72 |
|
|
|
73 |
|
|
|
74 |
|
|
#endif
|
75 |
|
|
|