ARC SDK
ArcVersion.h
Go to the documentation of this file.
1 // -*- indent-tabs-mode: nil -*-
2 
3 #ifndef __ARC_ARCVERSION_H__
4 #define __ARC_ARCVERSION_H__
5 
8 
9 
13 #define ARC_VERSION "3.0.0"
14 
15 #define ARC_VERSION_NUM 0x030000
16 
17 #define ARC_VERSION_MAJOR 3
18 
19 #define ARC_VERSION_MINOR 0
20 
21 #define ARC_VERSION_PATCH 0
22 
24 namespace Arc {
25 
27 
33  class ArcVersion {
34  public:
36  const unsigned int Major;
38  const unsigned int Minor;
40  const unsigned int Patch;
42  ArcVersion(const char* ver);
43  };
44 
47  extern const ArcVersion Version;
48 
49  // Front page for ARC SDK documentation
90  // Page listing all examples
159 } // namespace Arc
160 
162 #endif // __ARC_ARCVERSION_H__