mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-15 16:19:28 +02:00
+ set cobjdata in TRelObjInput.create
git-svn-id: trunk@45547 -
This commit is contained in:
parent
b2714052d1
commit
6104cd321c
@ -100,6 +100,7 @@ interface
|
||||
|
||||
TRelObjInput = class(TObjInput)
|
||||
public
|
||||
constructor create;override;
|
||||
function ReadObjData(AReader:TObjectreader;out Data:TObjData):boolean;override;
|
||||
class function CanReadObjData(AReader:TObjectreader):boolean;override;
|
||||
end;
|
||||
@ -534,6 +535,12 @@ implementation
|
||||
TRelObjInput
|
||||
*****************************************************************************}
|
||||
|
||||
constructor TRelObjInput.create;
|
||||
begin
|
||||
inherited create;
|
||||
cobjdata:=TRelObjData;
|
||||
end;
|
||||
|
||||
function TRelObjInput.ReadObjData(AReader: TObjectreader; out Data: TObjData): boolean;
|
||||
begin
|
||||
result:=false;
|
||||
|
Loading…
Reference in New Issue
Block a user