fpc/tests/webtbs/uw35918c.pp

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.