summaryrefslogtreecommitdiff
path: root/CIAO/CCF/Test/CIDL/Compiler/Generator.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/CCF/Test/CIDL/Compiler/Generator.hpp')
-rw-r--r--CIAO/CCF/Test/CIDL/Compiler/Generator.hpp34
1 files changed, 0 insertions, 34 deletions
diff --git a/CIAO/CCF/Test/CIDL/Compiler/Generator.hpp b/CIAO/CCF/Test/CIDL/Compiler/Generator.hpp
deleted file mode 100644
index 3876195469d..00000000000
--- a/CIAO/CCF/Test/CIDL/Compiler/Generator.hpp
+++ /dev/null
@@ -1,34 +0,0 @@
-// file : Test/CIDL/Compiler/Generator.hpp
-// author : Boris Kolpackov <boris@dre.vanderbilt.edu>
-// cvs-id : $Id$
-
-#ifndef TEST_CIDL_COMPILER_GENERATOR_HPP
-#define TEST_CIDL_COMPILER_GENERATOR_HPP
-
-#include <memory>
-
-#include "CCF/CIDL/SemanticGraph.hpp"
-
-namespace CIDL
-{
- class GeneratorImpl;
-
- class Generator
- {
- public:
- ~Generator ();
- Generator ();
-
- void
- generate (CCF::CIDL::SemanticGraph::TranslationUnit& tu);
-
- protected:
- Generator (GeneratorImpl&);
-
- protected:
- std::auto_ptr<GeneratorImpl> pimpl_;
- GeneratorImpl& impl_;
- };
-}
-
-#endif // TEST_CIDL_COMPILER_GENERATOR_HPP