summaryrefslogtreecommitdiff
path: root/CIAO/CIDLC/ServantSourceGenerator.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/CIDLC/ServantSourceGenerator.hpp')
-rw-r--r--CIAO/CIDLC/ServantSourceGenerator.hpp53
1 files changed, 0 insertions, 53 deletions
diff --git a/CIAO/CIDLC/ServantSourceGenerator.hpp b/CIAO/CIDLC/ServantSourceGenerator.hpp
deleted file mode 100644
index c5a15fd062c..00000000000
--- a/CIAO/CIDLC/ServantSourceGenerator.hpp
+++ /dev/null
@@ -1,53 +0,0 @@
-// file : CIDLC/ServantSourceGenerator.hpp
-// author : Jeff Parsons <j.parsons@vanderbilt.edu>
-// cvs-id : $Id$
-
-#ifndef SERVANT_SOURCE_GENERATOR_HPP
-#define SERVANT_SOURCE_GENERATOR_HPP
-
-#include <string>
-#include <iosfwd>
-
-#include "EmitterContext.hpp"
-
-#include "CCF/CodeGenerationKit/CommandLine.hpp"
-
-#include "CCF/CIDL/SemanticGraph.hpp"
-#include "CCF/CIDL/Traversal.hpp"
-
-class ServantSourceEmitter
-{
-public:
- ServantSourceEmitter (std::ostream& os_,
- CommandLine const& cl,
- std::string export_macro,
- fs::path const& file);
-
- virtual ~ServantSourceEmitter () {}
-
- virtual void
- generate (CCF::CIDL::SemanticGraph::TranslationUnit& u);
-
-private:
- virtual void
- pre (CCF::CIDL::SemanticGraph::TranslationUnit& u);
-
- virtual void
- generate_facets (CCF::CIDL::SemanticGraph::TranslationUnit& u,
- Context& c);
-
-private:
- std::ostream& os;
- CommandLine const& cl_;
- std::string export_macro_;
- fs::path file_;
-};
-
-#endif // SERVANT_SOURCE_GENERATOR_HPP
-
-/*
- * Local Variables:
- * mode: C++
- * c-basic-offset: 2
- * End:
- */