summaryrefslogtreecommitdiff
path: root/src/include/cctk_Version.h
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-12-15 18:04:01 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-12-15 18:04:01 +0000
commit596d9b6e4bb1c524a8d197b01f7e7268884955b5 (patch)
tree145947ed13044180e41433353f3e74afd186f831 /src/include/cctk_Version.h
parent31d6a423e2b3c01e43116b24a4310d4776aaefd5 (diff)
Tidied up the versioning stuff a bit.
Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@1954 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/cctk_Version.h')
-rw-r--r--src/include/cctk_Version.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/include/cctk_Version.h b/src/include/cctk_Version.h
new file mode 100644
index 00000000..d010c9a3
--- /dev/null
+++ b/src/include/cctk_Version.h
@@ -0,0 +1,40 @@
+ /*@@
+ @header cctk_Version.h
+ @date Fri Dec 15 18:44:56 2000
+ @author Tom Goodale
+ @desc
+ Version info about this Cactus
+ @enddesc
+ @version $Header$
+ @@*/
+
+#ifndef _CCTK_VERSION_H_
+#define _CCTK_VERSION_H_ 1
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+/* Version Stuff */
+const char *CCTK_FullVersion(void);
+
+const char *CCTK_MajorVersion(void);
+
+const char *CCTK_MinorVersion(void);
+
+const char *CCTK_MicroVersion(void);
+
+/* Compile date and time stuff */
+
+void CCTKi_DateStamp(void);
+
+const char *CCTK_CompileTime(void);
+
+const char *CCTK_CompileDate(void);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* _CCTK_VERSION_H_ */