EEROS  1.0.0.0
API for the EEROS Real-Time Robotics Framework
Version.hpp
Go to the documentation of this file.
1 #ifndef ORG_EEROS_CORE_VERSION_HPP_
2 #define ORG_EEROS_CORE_VERSION_HPP_
3 
4 namespace eeros {
5 
6  class Version {
7  public:
8  static const int major;
9  static const int minor;
10  static const int patch;
11  static const int tweak;
12  static const char *string;
13  };
14 
15 };
16 
17 #endif /* ORG_EEROS_CORE_VERSION_HPP_ */
Definition: Config.hpp:14
static const int patch
Definition: Version.hpp:10
static const char * string
Definition: Version.hpp:12
static const int minor
Definition: Version.hpp:9
Definition: Version.hpp:6
static const int major
Definition: Version.hpp:8
static const int tweak
Definition: Version.hpp:11