blob: bf3ff9de22e9d940c526e980d503e57f9a42352c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef VERSION_H
#define VERSION_H
namespace Version
{
static const int MAJOR = 0;
static const int MINOR = 4;
static const int REVISION = 0;
static const int BUILD = 0;
}
#endif // VERSION_H
|