blob: 2606fca9ffa19a913ce191e9c255c4d512902ff9 (
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 = 1104;
static const int BUILD = 20121;
}
#endif // VERSION_H
|