1234567891011121314151617181920212223 |
- unit ucustomattr14a;
- {$mode objfpc}{$H+}
- interface
- type
- TTestAttribute = class(TCustomAttribute)
- end;
- TTest2Attribute = class(TCustomAttribute)
- constructor Create(const aStr: String);
- end;
- implementation
- constructor TTest2Attribute.Create(const aStr: String);
- begin
- end;
- end.
|