summaryrefslogtreecommitdiff
path: root/CIAO/CIDLC/EmitterContext.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/CIDLC/EmitterContext.cpp')
-rw-r--r--CIAO/CIDLC/EmitterContext.cpp45
1 files changed, 0 insertions, 45 deletions
diff --git a/CIAO/CIDLC/EmitterContext.cpp b/CIAO/CIDLC/EmitterContext.cpp
deleted file mode 100644
index 478ae5d0027..00000000000
--- a/CIAO/CIDLC/EmitterContext.cpp
+++ /dev/null
@@ -1,45 +0,0 @@
-// file : CIDLC/EmitterContext.cpp
-// author : Jeff Parsons <j.parsons@vanderbilt.edu>
-// cvs-id : $Id$
-
-#include "EmitterContext.hpp"
-
-Context::Context (ostream& os,
- string export_macro,
- CommandLine const& cl)
- : os_ (os),
- export_macro_ (export_macro),
- cl_ (cl)
-{
-}
-
-ostream&
-Context::os (void)
-{
- return os_;
-}
-
-string
-Context::export_macro (void)
-{
- return export_macro_;
-}
-
-CommandLine const&
-Context::cl (void)
-{
- return cl_;
-}
-
-string
-Context::composition_name (void)
-{
- return composition_name_;
-}
-
-void
-Context::composition_name (const string& name)
-{
- composition_name_ = name;
-}
-