1 unit GenericListEditor;
2 
3 {$mode objfpc}{$H+}
4 
5 interface
6 
7 uses
8   Forms, StdCtrls, ButtonPanel;
9 
10 type
11 
12   { TGenericListEditForm }
13 
14   TGenericListEditForm = class(TForm)
15     ButtonPanel1: TButtonPanel;
16     Memo1: TMemo;
17   private
18 
19   public
20 
21   end;
22 
23 var
24   GenericListEditForm: TGenericListEditForm;
25 
26 implementation
27 
28 {$R *.lfm}
29 
30 end.
31 
32