mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-11 15:47:51 +02:00
+ added class TRelObjOutput
git-svn-id: trunk@45195 -
This commit is contained in:
parent
1a18805c96
commit
c0ffa18ee2
@ -39,9 +39,15 @@ interface
|
|||||||
|
|
||||||
type
|
type
|
||||||
|
|
||||||
|
{ TRelObjOutput }
|
||||||
|
|
||||||
|
TRelObjOutput = class(tObjOutput)
|
||||||
|
end;
|
||||||
|
|
||||||
{ TRelAssembler }
|
{ TRelAssembler }
|
||||||
|
|
||||||
TRelAssembler = class(tinternalassembler)
|
TRelAssembler = class(tinternalassembler)
|
||||||
|
constructor create(info: pasminfo; smart:boolean);override;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
@ -55,6 +61,16 @@ implementation
|
|||||||
;
|
;
|
||||||
|
|
||||||
|
|
||||||
|
{*****************************************************************************
|
||||||
|
TRelAssembler
|
||||||
|
*****************************************************************************}
|
||||||
|
|
||||||
|
constructor TRelAssembler.create(info: pasminfo; smart: boolean);
|
||||||
|
begin
|
||||||
|
inherited;
|
||||||
|
CObjOutput:=TRelObjOutput;
|
||||||
|
end;
|
||||||
|
|
||||||
{*****************************************************************************
|
{*****************************************************************************
|
||||||
Initialize
|
Initialize
|
||||||
*****************************************************************************}
|
*****************************************************************************}
|
||||||
|
Loading…
Reference in New Issue
Block a user