X-Git-Url: http://git.tdb.fi/?p=gldbg.git;a=blobdiff_plain;f=source%2Fgldbg.h;h=e42e4aa1d1425cb5c105bca4528d6835ad81ad77;hp=5654715c41845ffca052bbef67f936b86846ec68;hb=ca49785159e6a7cfd2d999a99041fa1567575a24;hpb=2f49929fc383eab718b5fb64d966535b753e7024 diff --git a/source/gldbg.h b/source/gldbg.h index 5654715..e42e4aa 100644 --- a/source/gldbg.h +++ b/source/gldbg.h @@ -15,6 +15,7 @@ Distributed under the GPL #include "commandinterpreter.h" #include "glstate.h" #include "process.h" +#include "profiler.h" #include "tracer.h" class GlDbg: public Msp::Application @@ -28,6 +29,7 @@ private: bool flushing; Tracer tracer; GlState glstate; + Profiler profiler; bool got_sigchld; static RegApp reg; @@ -37,6 +39,7 @@ public: int main(); Tracer &get_tracer() { return tracer; } GlState &get_glstate() { return glstate; } + Profiler &get_profiler() { return profiler; } Process &get_process() { return process; } void launch(); void quit(bool);