summaryrefslogtreecommitdiff
path: root/modules/CIAO/CIDLC/DescriptorGenerator.hpp
diff options
context:
space:
mode:
authorjai <jai@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-01-29 21:10:39 +0000
committerjai <jai@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-01-29 21:10:39 +0000
commite7b830ab561638ed25822054be80ce12e8801d38 (patch)
treea5b9aa16924c541fcb424ee9460b1ac7f5a89352 /modules/CIAO/CIDLC/DescriptorGenerator.hpp
parent9b720f395833b3ce2f499463e5fed37a0da926f4 (diff)
downloadATCD-DiffServ-Merge.tar.gz
branching/taggingDiffServ-Merge
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:
+ */