/usr/include/Gem/Gem/Version.h is in gem-dev 1:0.93.3-13.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #ifndef GEM_VERSION_H
#define GEM_VERSION_H
#include "Gem/ExportDef.h"
#define GEM_VERSION_MAJOR 0
#define GEM_VERSION_MINOR 93
namespace gem {
class GEM_EXTERN Version {
public:
const static char* versionString(void);
static bool versionCheck(int major, int minor);
}; };
#define GemVersion gem::Version
#endif
|