Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.2.0 / tests / test / uhlp31.pp
Size: Mime:
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.