summaryrefslogtreecommitdiff
path: root/cli/generator.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'cli/generator.hxx')
-rw-r--r--cli/generator.hxx26
1 files changed, 26 insertions, 0 deletions
diff --git a/cli/generator.hxx b/cli/generator.hxx
new file mode 100644
index 0000000..5db2aa5
--- /dev/null
+++ b/cli/generator.hxx
@@ -0,0 +1,26 @@
+// file : cli/generator.hxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2009 Code Synthesis Tools CC
+// license : MIT; see accompanying LICENSE file
+
+#ifndef CLI_GENERATOR_HXX
+#define CLI_GENERATOR_HXX
+
+#include <semantics/unit.hxx>
+
+class generator
+{
+public:
+ generator ();
+
+ void
+ generate (semantics::cli_unit&, semantics::path const&);
+
+private:
+ generator (generator const&);
+
+ generator&
+ operator= (generator const&);
+};
+
+#endif // CLI_GENERATOR_HXX