ucustomattr14a.pp 297 B

1234567891011121314151617181920212223
  1. unit ucustomattr14a;
  2. {$mode objfpc}{$H+}
  3. interface
  4. type
  5. TTestAttribute = class(TCustomAttribute)
  6. end;
  7. TTest2Attribute = class(TCustomAttribute)
  8. constructor Create(const aStr: String);
  9. end;
  10. implementation
  11. constructor TTest2Attribute.Create(const aStr: String);
  12. begin
  13. end;
  14. end.