umshlp15a.pp 204 B

12345678910111213141516171819
  1. unit umshlp15a;
  2. {$mode objfpc}
  3. interface
  4. type
  5. THelperA = class helper for TObject
  6. function Test: LongInt;
  7. end;
  8. implementation
  9. function THelperA.Test: LongInt;
  10. begin
  11. Result := 1;
  12. end;
  13. end.