summaryrefslogtreecommitdiff
path: root/TAO/CIAO/CIDLC/ServantSourceGenerator.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/CIDLC/ServantSourceGenerator.hpp')
-rw-r--r--TAO/CIAO/CIDLC/ServantSourceGenerator.hpp46
1 files changed, 0 insertions, 46 deletions
diff --git a/TAO/CIAO/CIDLC/ServantSourceGenerator.hpp b/TAO/CIAO/CIDLC/ServantSourceGenerator.hpp
deleted file mode 100644
index ad31821e789..00000000000
--- a/TAO/CIAO/CIDLC/ServantSourceGenerator.hpp
+++ /dev/null
@@ -1,46 +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 "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
- pre (CCF::CIDL::SemanticGraph::TranslationUnit& u);
-
- virtual void
- generate (CCF::CIDL::SemanticGraph::TranslationUnit& u);
-
-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:
- */