Files
PolyORB/Examples/LightBank/types.ads
Laurent Pautet 29b67a7cc8 *** empty log message ***
Subversion-branch: /importfromcvs/trunk
Subversion-revision: 46240
1997-03-13 16:06:35 +00:00

17 lines
340 B
Ada

package Types is
pragma Pure;
N_Customer_IDs : constant := 20;
type Customer_ID is range 0 .. N_Customer_IDs;
subtype Customer_Type is String;
subtype Password_Type is String;
Wrong_Password : exception;
Wrong_Customer : exception;
Wrong_Donator : exception;
No_More_IDs : exception;
end Types;