summaryrefslogtreecommitdiff
path: root/cli/options.cli
diff options
context:
space:
mode:
Diffstat (limited to 'cli/options.cli')
-rw-r--r--cli/options.cli18
1 files changed, 18 insertions, 0 deletions
diff --git a/cli/options.cli b/cli/options.cli
new file mode 100644
index 0000000..e7024fb
--- /dev/null
+++ b/cli/options.cli
@@ -0,0 +1,18 @@
+// file : cli/options.cli
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2009 Code Synthesis Tools CC
+// license : MIT; see accompanying LICENSE file
+
+// NOTE: Make sure you have a working CLI compiler around
+// before modifying this file.
+//
+
+include <string>;
+include <vector>;
+
+class options
+{
+ bool --help;
+ bool --version;
+ std::string --output-dir;
+};