summaryrefslogtreecommitdiff
path: root/CIAO/CCF/CCF/IDL2/SemanticAction/Impl/Include.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/CCF/CCF/IDL2/SemanticAction/Impl/Include.cpp')
-rw-r--r--CIAO/CCF/CCF/IDL2/SemanticAction/Impl/Include.cpp50
1 files changed, 0 insertions, 50 deletions
diff --git a/CIAO/CCF/CCF/IDL2/SemanticAction/Impl/Include.cpp b/CIAO/CCF/CCF/IDL2/SemanticAction/Impl/Include.cpp
deleted file mode 100644
index 5fcbe4a0c31..00000000000
--- a/CIAO/CCF/CCF/IDL2/SemanticAction/Impl/Include.cpp
+++ /dev/null
@@ -1,50 +0,0 @@
-// file : CCF/IDL2/SemanticAction/Impl/Include.cpp
-// author : Boris Kolpackov <boris@dre.vanderbilt.edu>
-// cvs-id : $Id$
-
-#include "CCF/IDL2/SemanticAction/Impl/Include.hpp"
-
-#include <iostream>
-
-using std::cerr;
-using std::endl;
-
-namespace CCF
-{
- namespace IDL2
- {
- namespace SemanticAction
- {
- namespace Impl
- {
- // @@ This is left unimplemented for now. Later, code from
- // IDL3 should be copied here. Or better yet this implementation
- // should allow customization via overriding.
- //
- Include::
- Include (Context& c)
- : ctx (c)
- {
- }
-
- void Include::
- quote (StringLiteralPtr const& sl)
- {
- if (ctx.trace ()) cerr << "__qinclude " << sl << endl;
- }
-
- void Include::
- bracket (StringLiteralPtr const& sl)
- {
- if (ctx.trace ()) cerr << "__binclude " << sl << endl;
- }
-
- void Include::
- end ()
- {
- if (ctx.trace ()) cerr << "end" << endl;
- }
- }
- }
- }
-}