summaryrefslogtreecommitdiff
path: root/modules/CIAO/CIDLC/DescriptorGenerator.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/CIDLC/DescriptorGenerator.hpp')
-rw-r--r--modules/CIAO/CIDLC/DescriptorGenerator.hpp35
1 files changed, 35 insertions, 0 deletions
diff --git a/modules/CIAO/CIDLC/DescriptorGenerator.hpp b/modules/CIAO/CIDLC/DescriptorGenerator.hpp
new file mode 100644
index 00000000000..e481c38e7d9
--- /dev/null
+++ b/modules/CIAO/CIDLC/DescriptorGenerator.hpp
@@ -0,0 +1,35 @@
+// file : CIDLC/DescriptorGenerator.hpp
+// author : Jeff Parsons <j.parsons@vanderbilt.edu>
+// cvs-id : $Id$
+
+#ifndef DESCRIPTOR_GENERATOR_HPP
+#define DESCRIPTOR_GENERATOR_HPP
+
+#include "CCF/CodeGenerationKit/CommandLine.hpp"
+#include "CCF/CodeGenerationKit/CommandLineDescriptor.hpp"
+
+#include "CCF/CIDL/SemanticGraph.hpp"
+
+class DescriptorGenerator
+{
+public:
+ static void
+ options (CL::Description& d);
+
+ void
+ generate (CommandLine const&,
+ CCF::CIDL::SemanticGraph::TranslationUnit&);
+
+private:
+ fs::ofstream ofs_;
+};
+
+
+#endif // DESCRIPTOR_GENERATOR_HPP
+
+/*
+ * Local Variables:
+ * mode: C++
+ * c-basic-offset: 2
+ * End:
+ */