mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-06 18:00:44 +00:00
a4cc51b8c5
svn-id: r26755
30 lines
571 B
C++
30 lines
571 B
C++
|
|
#ifndef PARALLACTION_DEBUGGER_H
|
|
#define PARALLACTION_DEBUGGER_H
|
|
|
|
#include "gui/debugger.h"
|
|
|
|
namespace Parallaction {
|
|
|
|
class Parallaction;
|
|
|
|
class Debugger : public GUI::Debugger {
|
|
public:
|
|
Debugger(Parallaction *vm);
|
|
virtual ~Debugger() {} // we need this for __SYMBIAN32__ archaic gcc/UIQ
|
|
|
|
protected:
|
|
Parallaction *_vm;
|
|
|
|
virtual void preEnter();
|
|
virtual void postEnter();
|
|
|
|
bool Cmd_DebugLevel(int argc, const char **argv);
|
|
bool Cmd_Location(int argc, const char **argv);
|
|
bool Cmd_Give(int argc, const char **argv);
|
|
};
|
|
|
|
} // End of namespace Parallaction
|
|
|
|
#endif
|