summaryrefslogtreecommitdiff
path: root/tiger-compiler/src/version.hh
diff options
context:
space:
mode:
Diffstat (limited to 'tiger-compiler/src/version.hh')
-rw-r--r--tiger-compiler/src/version.hh23
1 files changed, 23 insertions, 0 deletions
diff --git a/tiger-compiler/src/version.hh b/tiger-compiler/src/version.hh
new file mode 100644
index 0000000..c535db1
--- /dev/null
+++ b/tiger-compiler/src/version.hh
@@ -0,0 +1,23 @@
+/**
+ ** \file src/version.hh
+ ** \brief Version definitions.
+ */
+
+#pragma once
+
+/// \name Program identity.
+/// \{
+/// Name of this program.
+extern const char* program_name;
+
+/// Version string of this program.
+extern const char* program_version;
+
+/// Bug report address of this program.
+extern const char* program_bug_address;
+
+/// Describe program and accepted arguments.
+extern const char* program_doc;
+extern const char* program_args_doc;
+
+/// \}