NumeRe v1.1.4
NumeRe: Framework für Numerische Rechnungen
version.h
Go to the documentation of this file.
1#ifndef VERSION_H
2#define VERSION_H
3
4namespace AutoVersion{
5
6 //Date Version Types
7 static const char DATE[] = "19";
8 static const char MONTH[] = "10";
9 static const char YEAR[] = "2022";
10 static const char UBUNTU_VERSION_STYLE[] = "22.10";
11
12 //Software Status
13 static const char STATUS[] = "Compton";
14 static const char STATUS_SHORT[] = "";
15
16 //Standard Version Type
17 static const long MAJOR = 1;
18 static const long MINOR = 1;
19 static const long BUILD = 4;
20 static const long REVISION = 697;
21
22 //Miscellaneous Version Types
23 static const long BUILDS_COUNT = 4971;
24 #define RC_FILEVERSION 1,1,4,697
25 #define RC_FILEVERSION_STRING "1, 1, 4, 697\0"
26 static const char FULLVERSION_STRING [] = "1.1.4.697";
27
28 //SVN Version
29 static const char SVN_REVISION[] = "1240";
30 static const char SVN_DATE[] = "2022-10-15T18:21:14.295587Z";
31
32 //These values are to keep track of your versioning state, don't modify them.
33 static const long BUILD_HISTORY = 0;
34
35}
36#endif //VERSION_H
static const long BUILDS_COUNT
Definition: version.h:23
static const char SVN_REVISION[]
Definition: version.h:29
static const long MINOR
Definition: version.h:18
static const char FULLVERSION_STRING[]
Definition: version.h:26
static const long BUILD
Definition: version.h:19
static const char DATE[]
Definition: version.h:7
static const long MAJOR
Definition: version.h:17
static const char MONTH[]
Definition: version.h:8
static const char YEAR[]
Definition: version.h:9
static const char STATUS[]
Definition: version.h:13
static const long BUILD_HISTORY
Definition: version.h:33
static const char STATUS_SHORT[]
Definition: version.h:14
static const long REVISION
Definition: version.h:20
static const char SVN_DATE[]
Definition: version.h:30
static const char UBUNTU_VERSION_STYLE[]
Definition: version.h:10