1 ------------------------------------------------------------------------------
3 -- GNAT RUN-TIME COMPONENTS --
5 -- A D A . W I D E _ T E X T _ I O . F I X E D _ 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_Text_IO.Fixed_IO is a subpackage of
17 -- Wide_Text_IO. In GNAT we make it a child package to avoid loading
18 -- the necessary code if Fixed_IO is not instantiated. See the routine
19 -- Rtsfind.Check_Text_IO_Special_Unit for a description of how we patch up
20 -- the difference in semantics so that it is invisible to the Ada programmer.
25 package Ada
.Wide_Text_IO
.Fixed_IO
is
27 Default_Fore
: Field
:= Num
'Fore;
28 Default_Aft
: Field
:= Num
'Aft;
29 Default_Exp
: Field
:= 0;
43 Fore
: Field
:= Default_Fore
;
44 Aft
: Field
:= Default_Aft
;
45 Exp
: Field
:= Default_Exp
);
49 Fore
: Field
:= Default_Fore
;
50 Aft
: Field
:= Default_Aft
;
51 Exp
: Field
:= Default_Exp
);
59 (To
: out Wide_String;
61 Aft
: Field
:= Default_Aft
;
62 Exp
: Field
:= Default_Exp
);
64 end Ada
.Wide_Text_IO
.Fixed_IO
;