mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:38:14 +02:00
41 lines
670 B
ObjectPascal
41 lines
670 B
ObjectPascal
unit uw40764a;
|
|
|
|
{$ifdef fpc}
|
|
{$mode delphi}
|
|
{$endif}
|
|
|
|
interface
|
|
|
|
|
|
Type
|
|
TFMXObject = class(TObject)
|
|
procedure something; virtual;
|
|
function FindStyleResource(const AStyleLookup: string; const AClone: Boolean = False): TFmxObject; overload; virtual;
|
|
end;
|
|
|
|
TBrushObject = class(TFMXObject)
|
|
procedure something; override;
|
|
end;
|
|
|
|
implementation
|
|
|
|
function TFMXObject.FindStyleResource(const AStyleLookup: string; const AClone: Boolean = False): TFmxObject;
|
|
begin
|
|
Result:=Nil;
|
|
end;
|
|
|
|
procedure TFMXObject.something;
|
|
|
|
begin
|
|
writeln('here')
|
|
end;
|
|
|
|
procedure TBrushObject.something;
|
|
|
|
begin
|
|
inherited something;
|
|
Writeln('here too')
|
|
end;
|
|
|
|
end.
|
|
|