From 59f61c7926092e2dd2aaf381d666cbf82f9b457c Mon Sep 17 00:00:00 2001 From: urchlay Date: Mon, 13 Jun 2005 17:24:42 +0000 Subject: [PATCH] Forgot to remove DebuggerCommand.* in last commit, whoops git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@490 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba --- stella/src/debugger/DebuggerCommand.cxx | 29 ----------------- stella/src/debugger/DebuggerCommand.hxx | 43 ------------------------- stella/src/debugger/DebuggerParser.hxx | 3 +- 3 files changed, 1 insertion(+), 74 deletions(-) delete mode 100644 stella/src/debugger/DebuggerCommand.cxx delete mode 100644 stella/src/debugger/DebuggerCommand.hxx diff --git a/stella/src/debugger/DebuggerCommand.cxx b/stella/src/debugger/DebuggerCommand.cxx deleted file mode 100644 index f0a75d20e..000000000 --- a/stella/src/debugger/DebuggerCommand.cxx +++ /dev/null @@ -1,29 +0,0 @@ -//============================================================================ -// -// SSSS tt lll lll -// SS SS tt ll ll -// SS tttttt eeee ll ll aaaa -// SSSS tt ee ee ll ll aa -// SS tt eeeeee ll ll aaaaa -- "An Atari 2600 VCS Emulator" -// SS SS tt ee ll ll aa aa -// SSSS ttt eeeee llll llll aaaaa -// -// Copyright (c) 1995-2005 by Bradford W. Mott and the Stella team -// -// See the file "license" for information on usage and redistribution of -// this file, and for a DISCLAIMER OF ALL WARRANTIES. -// -// $Id: DebuggerCommand.cxx,v 1.1 2005-06-12 18:18:00 stephena Exp $ -//============================================================================ - -#include "bspf.hxx" -#include "Debugger.hxx" -#include "DebuggerCommand.hxx" -#include "DebuggerParser.hxx" - -DebuggerCommand::DebuggerCommand() { -} - -DebuggerCommand::DebuggerCommand(Debugger* d) { - debugger = d; -} diff --git a/stella/src/debugger/DebuggerCommand.hxx b/stella/src/debugger/DebuggerCommand.hxx deleted file mode 100644 index 938194d26..000000000 --- a/stella/src/debugger/DebuggerCommand.hxx +++ /dev/null @@ -1,43 +0,0 @@ -//============================================================================ -// -// SSSS tt lll lll -// SS SS tt ll ll -// SS tttttt eeee ll ll aaaa -// SSSS tt ee ee ll ll aa -// SS tt eeeeee ll ll aaaaa -- "An Atari 2600 VCS Emulator" -// SS SS tt ee ll ll aa aa -// SSSS ttt eeeee llll llll aaaaa -// -// Copyright (c) 1995-2005 by Bradford W. Mott and the Stella team -// -// See the file "license" for information on usage and redistribution of -// this file, and for a DISCLAIMER OF ALL WARRANTIES. -// -// $Id: DebuggerCommand.hxx,v 1.1 2005-06-12 18:18:00 stephena Exp $ -//============================================================================ - -#ifndef DEBUGGER_COMMAND_HXX -#define DEBUGGER_COMMAND_HXX - -#include "bspf.hxx" - -//class DebuggerParser; -class Debugger; - -class DebuggerCommand -{ - public: - DebuggerCommand(); - DebuggerCommand(Debugger* d); - - virtual string getName() = 0; - virtual int getArgCount() = 0; - virtual string execute(int c, int *a) = 0; - - protected: - int *args; - Debugger *debugger; -// DebuggerParser *parser; -}; - -#endif diff --git a/stella/src/debugger/DebuggerParser.hxx b/stella/src/debugger/DebuggerParser.hxx index a413f8043..8832911e5 100644 --- a/stella/src/debugger/DebuggerParser.hxx +++ b/stella/src/debugger/DebuggerParser.hxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: DebuggerParser.hxx,v 1.2 2005-06-13 02:47:44 urchlay Exp $ +// $Id: DebuggerParser.hxx,v 1.3 2005-06-13 17:24:42 urchlay Exp $ //============================================================================ #ifndef DEBUGGER_PARSER_HXX @@ -22,7 +22,6 @@ class Debugger; #include "bspf.hxx" -#include "DebuggerCommand.hxx" class DebuggerParser {