Ostream_TextDebugView.cpp
Go to the documentation of this file.
2 
3 namespace iv
4 {
5 
6 Ostream_TextDebugView::Ostream_TextDebugView( Context * context, std::ostream * out ) :
7  TextDebugView( context ),
8  _out( out )
9 {
10 }
11 
12 void Ostream_TextDebugView::print_line( const char * prefix, const char * line, const char * postfix )
13 {
14  (*this->_out) << prefix << line << postfix << std::endl;
15 }
16 
17 }