Diggler/src/VersionInfo.hpp

12 lines
242 B
C++

#ifndef DIGGLER_VERSION_INFO_HPP
#define DIGGLER_VERSION_INFO_HPP
namespace Diggler {
const char* VersionString = "0.1.0";
int VersionMajor = 0;
int VersionMinor = 1;
int VersionRevision = 0;
}
#endif /* DIGGLER_VERSION_INFO_HPP */