Subversion Repositories HomeAutomation

Rev

Rev 1328 | Details | Compare with Previous | Last modification | View Log | SVN | RSS feed

Rev Author Line No. Line
1310 runge 1
#ifndef VERSION_H
2
#define VERSION_H
3
 
4
namespace AutoVersion{
5
 
6
    //Date Version Types
1403 runge 7
    static const char DATE[] = "29";
8
    static const char MONTH[] = "10";
1310 runge 9
    static const char YEAR[] = "2009";
1403 runge 10
    static const double UBUNTU_VERSION_STYLE = 9.10;
1310 runge 11
 
12
    //Software Status
13
    static const char STATUS[] = "Alpha";
14
    static const char STATUS_SHORT[] = "a";
15
 
16
    //Standard Version Type
17
    static const long MAJOR = 2;
1326 runge 18
    static const long MINOR = 1;
1403 runge 19
    static const long BUILD = 159;
20
    static const long REVISION = 881;
1310 runge 21
 
22
    //Miscellaneous Version Types
1403 runge 23
    static const long BUILDS_COUNT = 227;
24
    #define RC_FILEVERSION 2,1,159,881
25
    #define RC_FILEVERSION_STRING "2, 1, 159, 881\0"
26
    static const char FULLVERSION_STRING[] = "2.1.159.881";
1310 runge 27
 
1319 runge 28
    //SVN Version
29
    static const char SVN_REVISION[] = "1310";
30
    static const char SVN_DATE[] = "2009-08-03T22:18:47.169739Z";
31
 
1310 runge 32
    //These values are to keep track of your versioning state, don't modify them.
1403 runge 33
    static const long BUILD_HISTORY = 33;
1310 runge 34
 
35
 
36
}
37
#endif //VERSION_h