summaryrefslogtreecommitdiff
path: root/CIAO/CIDLC/EmitterBase.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/CIDLC/EmitterBase.hpp')
-rw-r--r--CIAO/CIDLC/EmitterBase.hpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/CIAO/CIDLC/EmitterBase.hpp b/CIAO/CIDLC/EmitterBase.hpp
new file mode 100644
index 00000000000..407eee8d0e0
--- /dev/null
+++ b/CIAO/CIDLC/EmitterBase.hpp
@@ -0,0 +1,20 @@
+// file : CIDLC/EmitterBase.hpp
+// author : Jeff Parsons <j.parsons@vanderbilt.edu>
+// cvs-id : $Id$
+
+#ifndef EMITTERBASE_HPP
+#define EMITTERBASE_HPP
+
+#include "EmitterContext.hpp"
+
+class EmitterBase
+{
+public:
+ EmitterBase (Context&);
+
+protected:
+ Context& ctx;
+ ostream& os;
+};
+
+#endif // EMITTERBASE_HPP