Ostream_TextDebugView.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include <iostream>
4 
5 #include "DebugView.hpp"
6 #include "TextDebugView.hpp"
7 
8 namespace iv
9 {
10 
16 {
17 public:
18  Ostream_TextDebugView( Context * context, std::ostream * out );
19 
20  virtual void print_line( const char * prefix, const char * line, const char * postfix ) override;
21 
22 private:
23  std::ostream * _out;
24 };
25 
26 }