1 ------------------------------------------------------------------------------
3 -- GNAT RUN-TIME COMPONENTS --
5 -- A D A . W I D E _ W I D E _ T E X T _ I O . E N U M E R A T I O N _ I O --
9 -- This specification is derived from the Ada Reference Manual for use with --
10 -- GNAT. In accordance with the copyright of that document, you can freely --
11 -- copy and modify this specification, provided that if you redistribute a --
12 -- modified version, any changes that you have made are clearly indicated. --
14 ------------------------------------------------------------------------------
16 -- In Ada 95, the package Ada.Wide_Wide_Text_IO.Enumeration_IO is a subpackage
17 -- of Wide_Wide_Text_IO. In GNAT we make it a child package to avoid loading
18 -- the necessary code if Enumeration_IO is not instantiated. See the routine
19 -- Rtsfind.Check_Text_IO_Special_Unit for a description of how we patch up the
20 -- difference in semantics so that it is invisible to the Ada programmer.
25 package Ada
.Wide_Wide_Text_IO
.Enumeration_IO
is
27 Default_Width
: Field
:= 0;
28 Default_Setting
: Type_Set
:= Upper_Case
;
30 procedure Get
(File
: File_Type
; Item
: out Enum
);
31 procedure Get
(Item
: out Enum
);
36 Width
: Field
:= Default_Width
;
37 Set
: Type_Set
:= Default_Setting
);
41 Width
: Field
:= Default_Width
;
42 Set
: Type_Set
:= Default_Setting
);
45 (From
: Wide_Wide_String
;
50 (To
: out Wide_Wide_String
;
52 Set
: Type_Set
:= Default_Setting
);
54 end Ada
.Wide_Wide_Text_IO
.Enumeration_IO
;