]> git.tdb.fi Git - gldbg.git/blob - source/inspector.h
Add some virtual destructors to shut up older gcc versions
[gldbg.git] / source / inspector.h
1 /* $Id$
2
3 This file is part of gldbg
4 Copyright © 2010  Mikko Rasa, Mikkosoft Productions
5 Distributed under the GPL
6 */
7
8 #ifndef INSPECTOR_H_
9 #define INSPECTOR_H_
10
11 #include "glstate.h"
12 #include "tool.h"
13
14 class Inspector: public RegisteredTool<Inspector>
15 {
16 private:
17         GlState state;
18
19 public:
20         Inspector(GlDbg &);
21
22         virtual void decode(const char *, unsigned);
23 private:
24         void cmd_state(const std::string &);
25         void cmd_texture(const std::string &);
26         void cmd_buffer(const std::string &);
27 };
28
29 #endif