summaryrefslogtreecommitdiff
path: root/CIAO/CIDLC/InterfaceEmitter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/CIDLC/InterfaceEmitter.cpp')
-rw-r--r--CIAO/CIDLC/InterfaceEmitter.cpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/CIAO/CIDLC/InterfaceEmitter.cpp b/CIAO/CIDLC/InterfaceEmitter.cpp
deleted file mode 100644
index 1ce524cdfab..00000000000
--- a/CIAO/CIDLC/InterfaceEmitter.cpp
+++ /dev/null
@@ -1,26 +0,0 @@
-// file : CIDLC/InterfaceEmitter.cpp
-// author : Jeff Parsons <j.parsons@vanderbilt.edu>
-// cvs-id : $Id$
-
-#include "InterfaceEmitter.hpp"
-
-InterfaceEmitter::InterfaceEmitter (Context& c)
- : EmitterBase (c)
-{
-}
-
-void
-InterfaceEmitter::traverse (UnconstrainedInterface& i)
-{
- if (add (i))
- {
- Traversal::UnconstrainedInterface::traverse (i);
- }
-}
-
-bool
-InterfaceEmitter::add (UnconstrainedInterface& i)
-{
- return interfaces_.insert (&i).second;
-}
-