summaryrefslogtreecommitdiff
path: root/CIAO/CIDLC/ModuleEmitter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/CIDLC/ModuleEmitter.cpp')
-rw-r--r--CIAO/CIDLC/ModuleEmitter.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/CIAO/CIDLC/ModuleEmitter.cpp b/CIAO/CIDLC/ModuleEmitter.cpp
deleted file mode 100644
index 990d95ef4b8..00000000000
--- a/CIAO/CIDLC/ModuleEmitter.cpp
+++ /dev/null
@@ -1,22 +0,0 @@
-// file : CIDLC/ModuleEmitter.cpp
-// author : Jeff Parsons <j.parsons@vanderbilt.edu>
-// cvs-id : $Id$
-
-#include "ModuleEmitter.hpp"
-
-ModuleEmitter::ModuleEmitter (Context& c)
- : EmitterBase (c)
-{
-}
-
-void
-ModuleEmitter::pre (Type& t)
-{
- os << "namespace " << t.name () << "{";
-}
-
-void
-ModuleEmitter::post (Type&)
-{
- os << "}";
-}