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    
lazarus / usr / share / lazarus / 1.6 / examples / dockmanager / easytree / ftree.pas
Size: Mime:
unit fTree;

{$MODE Delphi}

interface

uses
  Forms, StdCtrls;

type
  TDumpBox = class(TForm)
    Memo1: TMemo;
  private

  public

  end;

var
  DumpBox: TDumpBox;

implementation

{$R *.lfm}

end.