Index

Package: Command_Line_Generic (generic)

Description

generic
   -- valid commands, that can be entered through the command line
   type Command_Type is (<>);

   -- a function that contains the control logic for the execution of the commands.
   with function Handle_Command ( Command : in Command_Type ) return boolean;
package Command_Line_Generic is

Types

Command_Type

type Command_Type is (<>);
valid commands, that can be entered through the command line

Subprograms & Entries

Handle_Command

with function Handle_Command 
( Command: in Command_Type ) return boolean;
a function that contains the control logic for the execution of the commands.

Get_Command

procedure Get_Command;

Calls:

Exceptions.Exception_Information defined at a-except.ads:103:13
Exceptions.Exception_Message defined at a-except.ads:93:13
Exceptions.Exception_Name defined at a-except.ads:71:13
Text_IO.Put_Line defined at a-textio.ads:263:14