Demo 0.0.1
Example C++ project
Loading...
Searching...
No Matches
version.h
Go to the documentation of this file.
1#ifndef DEMO_VERSION_H
2#define DEMO_VERSION_H
3
4#define DEMO_VERSION_STRING "0.0.1"
5
6#define DEMO_VERSION_MAJOR 0
7#define DEMO_VERSION_MINOR 0
8#define DEMO_VERSION_PATCH 1
9
10#define DEMO_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
11#define DEMO_VERSION_NUMBER DEMO_VERSION(0, 0, 1)
12
13#endif // DEMO_VERSION_H