home *** CD-ROM | disk | FTP | other *** search
- -- ╔═════════════════════════════════════════════════════════════╗
- -- ║█▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█║
- -- ║█ █║
- -- ║█ Meridian Software Systems █║
- -- ║█ █║
- -- ║█ Copyright (C) 1990 █║
- -- ║█ █║
- -- ║█ ALL RIGHTS RESERVED █║
- -- ║█ █║
- -- ║█▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█║
- -- ╚═════════════════════════════════════════════════════════════╝
-
- --────────────────────────────────────────────────────────────────────────────
- --
- -- Unit Name : AGULMENU - package specification
- --
- -- Purpose of unit: This procedure performs the menu operations for the
- -- AGUL demonstration and test program
- --
- --────────────────────────────────────────────────────────────────────────────
-
- with BOX;
- use BOX;
-
- package AGULMENU is
-
- type MENU_DISPLAY_ARRAY is array (1..11) of string (1..36);
-
- MENU_LINE,
- MENU_CLEAR : MENU_DISPLAY_ARRAY;
- DOUBLE : BOX.SIMPLE_KIND := DOUBLE_SIDED;
- LINE_CLEAR : constant string := " ";
- MENU_SELECT : integer;
-
- procedure PRINT_MENU (MENU_TYPE : integer);
-
- procedure DISPLAY_MENU (MENU : integer);
-
- end AGULMENU;
-