X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcommandinterpreter.h;h=537245fb53c1a0f38bea5b0a652f490e97fa64cf;hb=64592975a49e2bd26a561f36425071427f37d5fb;hp=bdd3c174b2d993a2a34c694e1d6be279d627e7d3;hpb=0be9f22fa27bfca77f494489fce0e62b66882e5b;p=gldbg.git diff --git a/source/commandinterpreter.h b/source/commandinterpreter.h index bdd3c17..537245f 100644 --- a/source/commandinterpreter.h +++ b/source/commandinterpreter.h @@ -23,8 +23,10 @@ private: Func func; std::string description; std::string help; + Command *alias_for; Command(); + Command(Command *); Command(Func, const std::string &); Command(Func, const std::string &, const std::string &); }; @@ -46,6 +48,10 @@ private: void cmd_kill(const std::string &); void cmd_exit(const std::string &); void cmd_trace(const std::string &); + void cmd_profile(const std::string &); + void cmd_state(const std::string &); + void cmd_texture(const std::string &); + void cmd_buffer(const std::string &); }; #endif