mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 23:28:28 +02:00
30 lines
257 B
ObjectPascal
30 lines
257 B
ObjectPascal
unit uw35918c;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils;
|
|
|
|
type
|
|
|
|
{ Attruvute }
|
|
|
|
Attruvute = class(TCustomAttribute)
|
|
public
|
|
constructor Create;
|
|
end;
|
|
|
|
implementation
|
|
|
|
{ Attruvute }
|
|
|
|
constructor Attruvute.Create;
|
|
begin
|
|
|
|
end;
|
|
|
|
end.
|
|
|