]> git.tdb.fi Git - gldbg.git/blobdiff - source/gldbg.h
Make tmpalloc global variables static
[gldbg.git] / source / gldbg.h
index e42e4aa1d1425cb5c105bca4528d6835ad81ad77..e53998251e3821bef667526e5346de0717741a22 100644 (file)
@@ -1,7 +1,7 @@
 /* $Id$
 
 This file is part of gldbg
-Copyright © 2009  Mikko Rasa, Mikkosoft Productions
+Copyright © 2009-2010  Mikko Rasa, Mikkosoft Productions
 Distributed under the GPL
 */
 
@@ -13,10 +13,9 @@ Distributed under the GPL
 #include <msp/core/application.h>
 #include <msp/fs/path.h>
 #include "commandinterpreter.h"
-#include "glstate.h"
 #include "process.h"
-#include "profiler.h"
-#include "tracer.h"
+
+class Tool;
 
 class GlDbg: public Msp::Application
 {
@@ -27,19 +26,17 @@ private:
        std::string buffer;
        unsigned buf_offset;
        bool flushing;
-       Tracer tracer;
-       GlState glstate;
-       Profiler profiler;
+       std::list<Tool *> tools;
        bool got_sigchld;
 
        static RegApp<GlDbg> reg;
 
 public:
        GlDbg(int, char **);
+       ~GlDbg();
+
        int main();
-       Tracer &get_tracer() { return tracer; }
-       GlState &get_glstate() { return glstate; }
-       Profiler &get_profiler() { return profiler; }
+       CommandInterpreter &get_command_interpreter() { return cmd_interp; }
        Process &get_process() { return process; }
        void launch();
        void quit(bool);
@@ -47,7 +44,6 @@ private:
        void tick();
        void check_child();
        void read_stream();
-       long ptrace(int, void *, void *);
        virtual void sighandler(int);
 };