ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/constante/src/gestionversion.h
Revision: 7
Committed: Wed Jun 13 18:03:13 2007 UTC (17 years, 11 months ago)
Content type: text/plain
Original Path: magic/lib/outil/outil/src/gestionversion.h
File size: 1614 byte(s)
Log Message:
mise a jour linux

File Contents

# User Rev Content
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 7 //#define BORLANDCPP
32 5 //#define VISUALCPPNET
33 7 #define GCC
34 5
35    
36     #ifndef GCC
37     #define WINDOWS_VERSION
38     #define BREP_SLD
39     #endif
40    
41     #ifdef BREP_SLD
42     #define BREP_STEP
43     #endif
44    
45    
46     #define VERSION "2007"
47    
48     #ifdef BREP_SAT
49     #define RSAT "1"
50     #else
51     #define RSAT "0"
52     #endif
53     #ifdef BREP_STEP
54     #define RSTEP "1"
55     #else
56     #define RSTEP "0"
57     #endif
58     #ifdef BREP_SLD
59     #define RSLD "1"
60     #else
61     #define RSLD "0"
62     #endif
63    
64    
65    
66    
67     #endif
68