blob: 8739a4e08a1263367305ac19cc75b7e88037221f (
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 = 1032;
static const int BUILD = 19088;
}
#endif // VERSION_H
|