From ccddec68116fc6403858ebfa13d4a7b1aa3d5278 Mon Sep 17 00:00:00 2001 From: "N.N." Date: Sun, 18 Oct 2009 20:01:19 +0000 Subject: hi gridflow 0.9.5 svn path=/trunk/; revision=12611 --- externals/gridflow/bundled/Base/GemVersion.h | 30 ++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 externals/gridflow/bundled/Base/GemVersion.h (limited to 'externals/gridflow/bundled/Base/GemVersion.h') diff --git a/externals/gridflow/bundled/Base/GemVersion.h b/externals/gridflow/bundled/Base/GemVersion.h new file mode 100644 index 00000000..926407f0 --- /dev/null +++ b/externals/gridflow/bundled/Base/GemVersion.h @@ -0,0 +1,30 @@ +#ifndef GEM_VERSION_H +#define GEM_VERSION_H + +#define GEM_VERSION_MAJOR 0 +#define GEM_VERSION_MINOR 91 +#define GEM_VERSION_BUGFIX 0 +#define GEM_VERSION_CODENAME "'tigital'" + + +#define STRINGIFY2(x) #x +#define STRINGIFY(x) STRINGIFY2(x) + +static const char *GEM_VERSION = \ + "" STRINGIFY(GEM_VERSION_MAJOR) \ + "." STRINGIFY(GEM_VERSION_MINOR) \ + "." STRINGIFY(GEM_VERSION_BUGFIX) \ + " " GEM_VERSION_CODENAME; + + +static const char *GEM_MAINTAINER = "IOhannes m zmoelnig"; + +static const char *GEM_AUTHORS[] = { + "Chris Clepper", + "James Tittle", + "IOhannes m zmoelnig"}; + +static const char* GEM_OTHERAUTHORS = + "Guenter Geiger, Daniel Heckenberg, Cyrille Henry, et al."; +#endif + -- cgit v1.2.1