Itasca C++ Interface
Loading...
Searching...
No Matches
version.h
1#pragma once
2// Sets framework version numbers
3#include "../../baseversion.txt"
4namespace version {
5 const unsigned major = MAJOR_VERSION; // Currently version 8
6 const unsigned update = UPDATE_VERSION;
7 const std::string revision = REVISION_VERSION; // SVN revision, set by build server.
8 BASE_EXPORT extern const char *targetPlatform;
9}
10#undef MAJOR_VERSION
11#undef UPDATE_VERSION
12#undef REVISION_VERSION
13// EoF
#define BASE_EXPORT
Definition basedef.h:24