X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcommandinterpreter.h;h=ca5060b4d50f42e4757cadc0f40cf12d5a49f5ad;hb=a34325fadec5b2be003bf9af1f081bfc4c83e8b6;hp=cc6246e927390465301983e03cd290662a8d37e3;hpb=73c55fc88d8bad336fbd6cfecedc0cf18d06167c;p=gldbg.git diff --git a/source/commandinterpreter.h b/source/commandinterpreter.h index cc6246e..ca5060b 100644 --- a/source/commandinterpreter.h +++ b/source/commandinterpreter.h @@ -1,10 +1,3 @@ -/* $Id$ - -This file is part of gldbg -Copyright © 2009-2010 Mikko Rasa, Mikkosoft Productions -Distributed under the GPL -*/ - #ifndef COMMANDINTERPRETER_H_ #define COMMANDINTERPRETER_H_ @@ -71,6 +64,7 @@ private: public: CommandInterpreter(GlDbg &); + ~CommandInterpreter(); template Command ®ister_command(const std::string &n, T *o, void (T::*f)(const std::string &)) @@ -81,6 +75,10 @@ public: private: void cmd_help(const std::string &); void cmd_run(const std::string &); + void cmd_break(const std::string &); + void cmd_unbreak(const std::string &); + void cmd_next(const std::string &); + void cmd_finish(const std::string &); void cmd_continue(const std::string &); void cmd_signal(const std::string &); void cmd_kill(const std::string &);