Debugger/DbgIntf: Moved code to DebuggerIntf package (prepare)

git-svn-id: trunk@44096 -
This commit is contained in:
martin 2014-02-16 14:27:52 +00:00
parent f3bf43a369
commit 398398a54f
2 changed files with 0 additions and 43 deletions

1
.gitattributes vendored
View File

@ -1113,7 +1113,6 @@ components/debuggerintf/Makefile svneol=native#text/plain
components/debuggerintf/Makefile.compiled svneol=native#text/plain
components/debuggerintf/Makefile.fpc svneol=native#text/plain
components/debuggerintf/dbgintfbasetypes.pas svneol=native#text/pascal
components/debuggerintf/dbgintfdebuggerbase.pp svneol=native#text/pascal
components/debuggerintf/dbgintfmiscclasses.pas svneol=native#text/pascal
components/debuggerintf/debuggerintf.lpk svneol=native#text/plain
components/debuggerintf/debuggerintf.pas svneol=native#text/pascal

View File

@ -1,42 +0,0 @@
{ $Id: debugger.pp 43417 2013-11-10 23:32:18Z martin $ }
{ -------------------------------------------
DebuggerBase.pp - Debugger base classes
-------------------------------------------
@author(Marc Weustink <marc@@dommelstein.net>)
@author(Martin Friebe)
This unit contains the base class definitions of the debugger. These
classes are only definitions. Implemented debuggers should be
derived from these.
***************************************************************************
* *
* This source 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 code 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. *
* *
* A copy of the GNU General Public License is available on the World *
* Wide Web at <http://www.gnu.org/copyleft/gpl.html>. You can also *
* obtain it by writing to the Free Software Foundation, *
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
* *
***************************************************************************
}
unit DbgIntfDebuggerBase;
{$mode objfpc}{$H+}
interface
implementation
end.