aboutsummaryrefslogtreecommitdiff
path: root/Gem/develop/include/Gem/Gem/Version.h
blob: f7c3003582b03fd61b268504468ebc252097b425 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef GEM_VERSION_H
#define GEM_VERSION_H

#include "Gem/ExportDef.h"

#define GEM_VERSION_MAJOR 0
#define GEM_VERSION_MINOR 94

namespace gem
{
class GEM_EXTERN Version
{
public:
  const static char* versionString(void);
  static bool versionCheck(int major, int minor);
};
};

#define GemVersion gem::Version

#endif