+ Added header and footer

git-svn-id: trunk@201 -
This commit is contained in:
lazarus 2001-02-25 16:44:57 +00:00
parent e29c865572
commit 422cfef479
3 changed files with 85 additions and 0 deletions

View File

@ -1,3 +1,24 @@
{ $Id$ }
{ ---------------------------------------
DBGBreakpoint.pp - Breakpoint classes
---------------------------------------
@created(Wed Feb 25st WET 2001)
@lastmod($Date$)
@author(Marc Weustink <marc@@lazarus.dommelstein.net>)
This unit contains the class definitions of the
Breakpoints used by the debugger
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
}
unit DBGBreakpoint;
{$mode objfpc}
@ -138,3 +159,10 @@ begin
end;
end.
{ =============================================================================
$Log$
Revision 1.2 2001/02/25 16:44:57 lazarus
MWE:
+ Added header and footer
}

View File

@ -1,3 +1,25 @@
{ $Id$ }
{ ----------------------------------------
DBGDebugger.pp - Debugger base classes
----------------------------------------
@created(Wed Feb 25st WET 2001)
@lastmod($Date$)
@author(Marc Weustink <marc@@lazarus.dommelstein.net>)
This unit contains the base class definitions of the debugger. These
classes are only definitions. Implemented debuggers should be
derived from these.
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
}
unit DBGDebugger;
{$mode objfpc}
@ -98,3 +120,10 @@ begin
end;
end.
{ =============================================================================
$Log$
Revision 1.2 2001/02/25 16:44:57 lazarus
MWE:
+ Added header and footer
}

View File

@ -1,3 +1,24 @@
{ $Id$ }
{ -----------------------------------
DBGWatch.pp - Debug Watch classes
-----------------------------------
@created(Wed Feb 25st WET 2001)
@lastmod($Date$)
@author(Marc Weustink <marc@@lazarus.dommelstein.net>)
This unit contains the class definitions of the
Watches used by the debugger
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
}
unit DBGWatch;
{$mode objfpc}
@ -56,3 +77,10 @@ begin
end;
end.
{ =============================================================================
$Log$
Revision 1.2 2001/02/25 16:44:57 lazarus
MWE:
+ Added header and footer
}