Midge  v3.9.2
Data Processing Framework
output.hh
Go to the documentation of this file.
1 #ifndef midge_output_hh_
2 #define midge_output_hh_
3 
4 #include "stream.hh"
5 #include "member_variables.hh"
6 
7 namespace midge
8 {
9 
10  class node;
11 
12  class output
13  {
14  public:
15  output();
16  virtual ~output();
17 
18  public:
19  mv_accessible( string_t, name )
20 
21  public:
22  virtual stream* get() = 0;
23  };
24 
25 }
26 
27 #endif
Definition: _buffer.hh:11
std::string string_t
Definition: types.hh:21
virtual ~output()
Definition: output.cc:10