summaryrefslogtreecommitdiff
path: root/CIAO/CIDLC/EmitterContext.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/CIDLC/EmitterContext.hpp')
-rw-r--r--CIAO/CIDLC/EmitterContext.hpp35
1 files changed, 0 insertions, 35 deletions
diff --git a/CIAO/CIDLC/EmitterContext.hpp b/CIAO/CIDLC/EmitterContext.hpp
deleted file mode 100644
index bec5e74f91d..00000000000
--- a/CIAO/CIDLC/EmitterContext.hpp
+++ /dev/null
@@ -1,35 +0,0 @@
-// file : CIDLC/EmitterContext.hpp
-// author : Jeff Parsons <j.parsons@vanderbilt.edu>
-// cvs-id : $Id$
-
-#ifndef EMITTERCONTEXT_HPP
-#define EMITTERCONTEXT_HPP
-
-#include "CCF/CodeGenerationKit/CommandLine.hpp"
-
-#include <ostream>
-#include <string>
-
-using namespace std;
-
-class Context
-{
-public:
- Context (ostream& os,
- string export_macro,
- CommandLine const& cl);
-
- ostream& os (void);
- string export_macro (void);
- CommandLine const& cl (void);
- string composition_name (void);
- void composition_name (const string& name);
-
-private:
- ostream& os_;
- string export_macro_;
- CommandLine const& cl_;
- string composition_name_;
-};
-
-#endif // EMITTERCONTEXT_HPP