From aa6209ab513c9c7b00c73a1d84fb3d5cd87cd5df Mon Sep 17 00:00:00 2001 From: nickysn Date: Sat, 2 May 2020 02:35:31 +0000 Subject: [PATCH] + added an override of the abstract method TRelObjOutput.writeData (not implemented, yet) git-svn-id: trunk@45216 - --- compiler/ogrel.pas | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/compiler/ogrel.pas b/compiler/ogrel.pas index e375cd4bc3..caaa6c90d9 100644 --- a/compiler/ogrel.pas +++ b/compiler/ogrel.pas @@ -42,6 +42,8 @@ interface { TRelObjOutput } TRelObjOutput = class(tObjOutput) + protected + function writeData(Data:TObjData):boolean;override; end; { TRelAssembler } @@ -60,6 +62,15 @@ implementation version ; +{***************************************************************************** + TRelObjOutput +*****************************************************************************} + + function TRelObjOutput.writeData(Data: TObjData): boolean; + begin + { todo: implement } + result:=true; + end; {***************************************************************************** TRelAssembler