lazarus/examples/dockmanager/easytree/ftree.pas

28 lines
203 B
ObjectPascal

unit fTree;
{$MODE Delphi}
interface
uses
Forms, StdCtrls;
type
TDumpBox = class(TForm)
Memo1: TMemo;
private
public
end;
var
DumpBox: TDumpBox;
implementation
{$R *.lfm}
end.