summaryrefslogtreecommitdiff
path: root/CIAO/CIDLC/ExecImplSourceGenerator.hpp
diff options
context:
space:
mode:
authorseibelr <seibelr@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-11-24 22:12:20 +0000
committerseibelr <seibelr@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-11-24 22:12:20 +0000
commit47b676670dc9373bc77af80388e0b51e36134738 (patch)
treeaacce0809279e1d142e7b196a84ff10dfbdae4d0 /CIAO/CIDLC/ExecImplSourceGenerator.hpp
parent3dd4e2fe6c64de3a9db04757eade78d764b578f1 (diff)
downloadATCD-GH5_0port.tar.gz
Added the ACE and TAO for this branchGH5_0port
Diffstat (limited to 'CIAO/CIDLC/ExecImplSourceGenerator.hpp')
-rw-r--r--CIAO/CIDLC/ExecImplSourceGenerator.hpp43
1 files changed, 0 insertions, 43 deletions
diff --git a/CIAO/CIDLC/ExecImplSourceGenerator.hpp b/CIAO/CIDLC/ExecImplSourceGenerator.hpp
deleted file mode 100644
index bf70a53870a..00000000000
--- a/CIAO/CIDLC/ExecImplSourceGenerator.hpp
+++ /dev/null
@@ -1,43 +0,0 @@
-// file : CIDLC/ExecImplSourceGenerator.hpp
-// author : Jeff Parsons <j.parsons@vanderbilt.edu>
-// cvs-id : $Id$
-
-#ifndef EXEC_IMPL_SOURCE_GENERATOR_HPP
-#define EXEC_IMPL_SOURCE_GENERATOR_HPP
-
-#include "CCF/CodeGenerationKit/CommandLine.hpp"
-
-#include "CCF/CIDL/SemanticGraph.hpp"
-#include "CCF/CIDL/Traversal.hpp"
-
-using std::string;
-
-class ExecImplSourceEmitter
-{
-public:
- ExecImplSourceEmitter (std::ostream& os_,
- CommandLine const& cl,
- string export_macro,
- fs::path const& file);
-
- virtual ~ExecImplSourceEmitter () {}
-
- virtual void
- pre (CCF::CIDL::SemanticGraph::TranslationUnit& u);
-
- virtual void
- generate (CCF::CIDL::SemanticGraph::TranslationUnit& u);
-
- virtual void
- post (CCF::CIDL::SemanticGraph::TranslationUnit& u);
-
-private:
- std::ostream& os;
- CommandLine const& cl_;
- string export_macro_;
- fs::path file_;
-};
-
-
-#endif // EXEC_IMPL_SOURCE_GENERATOR_HPP
-