summaryrefslogtreecommitdiff
path: root/modules/CIAO/CIDLC/EmitterBase.hpp
blob: 407eee8d0e0acb43752bb964f58b5f17a7162f68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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