ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/constante/src/gestionversion.h
Revision: 253
Committed: Tue Jul 13 19:40:46 2010 UTC (14 years, 10 months ago) by francois
Content type: text/plain
Original Path: magic/lib/outil/src/gestionversion.h
File size: 1987 byte(s)
Error occurred while calculating annotation data.
Log Message:
changement de hiearchie et utilisation de ccmake + mise a jour

File Contents

# Content
1 //------------------------------------------------------------
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 #define BREP_OCC
30
31 #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
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 #ifdef BREP_OCC
52 #ifdef WINDOWS_VERSION
53 #define WNT
54 #define OCCBCB
55 #endif
56 #ifdef GCC
57 #define HAVE_CONFIG_H
58 #define HAVE_FSTREAM
59 #define HAVE_IOSTREAM
60 #define HAVE_LIMITS_H
61 #endif
62 #endif
63
64 #define VERSION "2009"
65 #define DATEVERSION "2002-2009"
66
67 #ifdef BREP_SAT
68 #define RSAT "1"
69 #else
70 #define RSAT "0"
71 #endif
72 #ifdef BREP_STEP
73 #define RSTEP "1"
74 #else
75 #define RSTEP "0"
76 #endif
77 #ifdef BREP_SLD
78 #define RSLD "1"
79 #else
80 #define RSLD "0"
81 #endif
82
83
84
85
86 #endif
87