ARB
arb_version.h
Go to the documentation of this file.
1 // =============================================================== //
2 // //
3 // File : arb_version.h //
4 // Purpose : //
5 // //
6 // Coded by Ralf Westram (coder@reallysoft.de) in March 2007 //
7 // Institute of Microbiology (Technical University Munich) //
8 // http://www.arb-home.de/ //
9 // //
10 // =============================================================== //
11 #ifndef ARB_VERSION_H
12 #define ARB_VERSION_H
13 
14 // exports the following variables:
15 //
16 // ARB_BUILD_DATE contains the date on which arb was build
17 // ARB_BUILD_YEAR contains the year in which arb was build
18 // ARB_BUILD_HOST contains the host on which arb was build
19 // ARB_BUILD_USER contains the user by whom arb was build
20 //
21 // ARB_VERSION arb version (no revision number for rc and stable)
22 // ARB_VERSION_DETAILED arb version (always including revision number)
23 
24 #include <arb_build.h>
25 #include <svn_revision.h>
26 
27 #ifndef ARB_VERSION
28 #error No version defined
29 #endif
30 
31 #else
32 #error arb_version.h included twice
33 #endif // ARB_VERSION_H
34 
35 
36 
37