* fields after objects methods.

git-svn-id: trunk@13340 -
This commit is contained in:
marco 2009-06-27 14:06:58 +00:00
parent c7ca0f8b0f
commit 10c67a4ad5

View File

@ -201,6 +201,8 @@ type
PWatch = ^TWatch;
TWatch = Object(TObject)
expr : pstring;
last_value,current_value : pchar;
constructor Init(s : string);
constructor Load(var S: TStream);
procedure Store(var S: TStream);
@ -208,8 +210,6 @@ type
procedure Get_new_value;
procedure Force_new_value;
destructor done;virtual;
expr : pstring;
last_value,current_value : pchar;
private
GDBRunCount : longint;
end;