aboutsummaryrefslogtreecommitdiff
path: root/externals/gridflow/bundled/Base/GemVersion.h
diff options
context:
space:
mode:
authorN.N. <matju@users.sourceforge.net>2009-10-18 20:01:19 +0000
committerN.N. <matju@users.sourceforge.net>2009-10-18 20:01:19 +0000
commitccddec68116fc6403858ebfa13d4a7b1aa3d5278 (patch)
tree6b90e41b15bbf2440afa76d53cc436debf5b5c5b /externals/gridflow/bundled/Base/GemVersion.h
parenta1fb215b39535805aa19608185d5e52c0f524b42 (diff)
hi gridflow 0.9.5
svn path=/trunk/; revision=12611
Diffstat (limited to 'externals/gridflow/bundled/Base/GemVersion.h')
-rw-r--r--externals/gridflow/bundled/Base/GemVersion.h30
1 files changed, 30 insertions, 0 deletions
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
+