ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/constante/src/gestionversion.h
Revision: 136
Committed: Mon Aug 4 18:02:19 2008 UTC (16 years, 9 months ago) by francois
Content type: text/plain
Original Path: magic/lib/outil/outil/src/gestionversion.h
File size: 1873 byte(s)
Log Message:
Correction de petit bug dans l'importation OpenCascade

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 francois 136 #define BREP_OCC
31 5
32 francois 112 #ifdef __BORLANDC__
33     #define BORLANDCPP
34     #endif
35     #ifdef _MSC_VER
36     #define VISUALCPPNET
37     #endif
38     #ifdef __GNUC__
39     #define GCC
40     #endif
41 5
42    
43     #ifndef GCC
44     #define WINDOWS_VERSION
45     #define BREP_SLD
46     #endif
47    
48     #ifdef BREP_SLD
49     #define BREP_STEP
50     #endif
51    
52 francois 136 #ifdef BREP_OCC
53     #ifdef WINDOWS_VERSION
54     #define WNT
55     #define OCCBCB
56     #endif
57     #endif
58 5
59 francois 78 #define VERSION "2008"
60     #define DATEVERSION "2002-2008"
61 5
62     #ifdef BREP_SAT
63     #define RSAT "1"
64     #else
65     #define RSAT "0"
66     #endif
67     #ifdef BREP_STEP
68     #define RSTEP "1"
69     #else
70     #define RSTEP "0"
71     #endif
72     #ifdef BREP_SLD
73     #define RSLD "1"
74     #else
75     #define RSLD "0"
76     #endif
77    
78    
79    
80    
81     #endif
82