summaryrefslogtreecommitdiff
path: root/CIAO/CCF/Test/IDL3/Compiler/Generator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/CCF/Test/IDL3/Compiler/Generator.cpp')
-rw-r--r--CIAO/CCF/Test/IDL3/Compiler/Generator.cpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/CIAO/CCF/Test/IDL3/Compiler/Generator.cpp b/CIAO/CCF/Test/IDL3/Compiler/Generator.cpp
deleted file mode 100644
index 06310ecd4b8..00000000000
--- a/CIAO/CCF/Test/IDL3/Compiler/Generator.cpp
+++ /dev/null
@@ -1,32 +0,0 @@
-// file : Test/IDL3/Compiler/Generator.cpp
-// author : Boris Kolpackov <boris@dre.vanderbilt.edu>
-// cvs-id : $Id$
-
-#include "Generator.hpp"
-#include "GeneratorImpl.hpp"
-
-namespace IDL3
-{
- Generator::
- ~Generator ()
- {
- }
-
- Generator::
- Generator ()
- : pimpl_ (new GeneratorImpl), impl_ (*pimpl_)
- {
- }
-
- Generator::
- Generator (GeneratorImpl& gi)
- : pimpl_ (), impl_ (gi)
- {
- }
-
- void Generator::
- generate (CCF::IDL3::SemanticGraph::TranslationUnit& tu)
- {
- impl_.generate (tu);
- }
-}