mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-12 03:06:34 +02:00
* Add SkipValue to TReader
This commit is contained in:
parent
d2f3426bda
commit
54d692c7d6
@ -1864,6 +1864,7 @@ type
|
||||
function EndOfList: Boolean;
|
||||
procedure EndReferences;
|
||||
procedure FixupReferences;
|
||||
procedure SkipValue;
|
||||
function NextValue: TValueType;
|
||||
//Please don't use read, better use ReadBinary whenever possible
|
||||
//uuups, ReadBinary is protected ..
|
||||
|
@ -1070,6 +1070,12 @@ begin
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure TReader.SkipValue;
|
||||
|
||||
begin
|
||||
FDriver.SkipValue;
|
||||
end;
|
||||
|
||||
procedure TReader.ReadData(Instance: TComponent);
|
||||
var
|
||||
SavedOwner, SavedParent: TComponent;
|
||||
|
Loading…
Reference in New Issue
Block a user