+ added class TRelObjOutput

git-svn-id: trunk@45195 -
This commit is contained in:
nickysn 2020-04-30 17:31:18 +00:00
parent 1a18805c96
commit c0ffa18ee2

View File

@ -39,9 +39,15 @@ interface
type
{ TRelObjOutput }
TRelObjOutput = class(tObjOutput)
end;
{ TRelAssembler }
TRelAssembler = class(tinternalassembler)
constructor create(info: pasminfo; smart:boolean);override;
end;
implementation
@ -55,6 +61,16 @@ implementation
;
{*****************************************************************************
TRelAssembler
*****************************************************************************}
constructor TRelAssembler.create(info: pasminfo; smart: boolean);
begin
inherited;
CObjOutput:=TRelObjOutput;
end;
{*****************************************************************************
Initialize
*****************************************************************************}