Horizon
version.hpp
1 #pragma once
2 #include <string>
3 
4 namespace horizon {
5 class Version {
6 public:
7  static const unsigned int major, minor, micro;
8  static std::string get_string();
9  static const char *name;
10  static const char *commit;
11  static const char *commit_hash;
12 };
13 } // namespace horizon
horizon::Version
Definition: version.hpp:5