mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-07 17:18:15 +02:00
28 lines
203 B
ObjectPascal
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.
|
|
|