ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/constante/src/gestionversion.h
Revision: 78
Committed: Thu Apr 10 00:05:47 2008 UTC (17 years, 1 month ago) by francois
Content type: text/plain
Original Path: magic/lib/outil/outil/src/gestionversion.h
File size: 1647 byte(s)
Log Message:
Ajout du mailleur octal pour XFEM et ajout de fusion de face pour obtenir les cofaces avec vectorisation ameliore

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 francois 19 #define BORLANDCPP
32 5 //#define VISUALCPPNET
33 francois 19 //#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 francois 78 #define VERSION "2008"
47     #define DATEVERSION "2002-2008"
48 5
49     #ifdef BREP_SAT
50     #define RSAT "1"
51     #else
52     #define RSAT "0"
53     #endif
54     #ifdef BREP_STEP
55     #define RSTEP "1"
56     #else
57     #define RSTEP "0"
58     #endif
59     #ifdef BREP_SLD
60     #define RSLD "1"
61     #else
62     #define RSLD "0"
63     #endif
64    
65    
66    
67    
68     #endif
69