mirror of https://github.com/stella-emu/stella.git
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
This commit is contained in:
parent
382d2fd045
commit
59f61c7926
|
@ -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;
|
||||
}
|
|
@ -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
|
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue