Version.h 297 B

123456789101112131415161718
  1. #ifndef VERSION_H
  2. #define VERSION_H
  3. #include <string>
  4. class Version {
  5. public:
  6. // Defined by build system:
  7. static const bool RELEASE;
  8. static const char* const VERSION;
  9. static const char* const REVISION;
  10. // Computed using constants above:
  11. static std::string full();
  12. };
  13. #endif // VERSION_H