aboutsummaryrefslogtreecommitdiff
path: root/engines/cruise/debugger.h
diff options
context:
space:
mode:
authorPaul Gilbert2009-02-11 10:03:01 +0000
committerPaul Gilbert2009-02-11 10:03:01 +0000
commitc2afb25ec556b78947d7caa47a24f8db10f529db (patch)
tree6e571d893c3e2f12a3ee8bc52b54308749277149 /engines/cruise/debugger.h
parent41eaf2c575d79f80303a96dde867433abd40dbd9 (diff)
downloadscummvm-rg350-c2afb25ec556b78947d7caa47a24f8db10f529db.tar.gz
scummvm-rg350-c2afb25ec556b78947d7caa47a24f8db10f529db.tar.bz2
scummvm-rg350-c2afb25ec556b78947d7caa47a24f8db10f529db.zip
Added debugger console
svn-id: r36259
Diffstat (limited to 'engines/cruise/debugger.h')
-rw-r--r--engines/cruise/debugger.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/engines/cruise/debugger.h b/engines/cruise/debugger.h
new file mode 100644
index 0000000000..2c5b2a906f
--- /dev/null
+++ b/engines/cruise/debugger.h
@@ -0,0 +1,45 @@
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * $URL$
+ * $Id$
+ *
+ */
+
+#ifndef CRUISE_DEBUGGER_H
+#define CRUISE_DEBUGGER_H
+
+#include "gui/debugger.h"
+
+namespace Cruise {
+
+class Debugger : public GUI::Debugger {
+public:
+ Debugger();
+ virtual ~Debugger() {} // we need this for __SYMBIAN32__ archaic gcc/UIQ
+
+protected:
+ bool cmd_hotspots(int argc, const char **argv);
+ bool cmd_items(int argc, const char **argv);
+};
+
+} // End of namespace Cruise
+
+#endif