DebugView.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 
4 #include <string>
5 #include <vector>
6 #include "../Basics/Context.hpp"
7 
8 namespace iv
9 {
10 
13 class DebugView
14 {
15 public:
17  Context * context() const;
18 
19 private:
20  Context * _context;
21 };
22 
23 }