source: trunk/Application/UMenu.pas

Last change on this file was 24, checked in by chronos, 12 years ago
  • Opraveno: Ladění komunikačního protokolu s terminálem BF-630.
File size: 326 bytes
Line 
1unit UMenu;
2
3{$mode delphi}
4
5interface
6
7uses
8 Classes, SysUtils;
9
10type
11 TChronis = class
12 type
13 TAction = class
14 OnExecute: TNotifyEvent;
15 end;
16
17 TMenu = class
18 end;
19
20 TMenuItem = class
21 Name: string;
22 Action: TAction;
23 end;
24
25 end;
26
27
28
29implementation
30
31end.
32
Note: See TracBrowser for help on using the repository browser.