1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
unit uhlp31;
{$ifdef fpc}
{$mode delphi}{$H+}
{$endif}
interface
type
TFoo = class
end;
{$M+}
TFooHelper = class helper for TFoo
strict private
procedure Test1;
private
procedure Test2;
strict protected
procedure Test3;
protected
procedure Test4;
public
procedure Test5;
published
procedure Test6;
end;
{$M-}
implementation
procedure TFooHelper.Test1;
begin
end;
procedure TFooHelper.Test2;
begin
end;
procedure TFooHelper.Test3;
begin
end;
procedure TFooHelper.Test4;
begin
end;
procedure TFooHelper.Test5;
begin
end;
procedure TFooHelper.Test6;
begin
end;
end.
|