home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gnat-2.06-src.tgz / tar.out / fsf / gnat / ada / a-wtflio.ads < prev    next >
Text File  |  1996-09-28  |  3KB  |  69 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --     A D A . T E X T _ I O . W I D E _ T E X T _ I O . F L O A T _ I O    --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.1 $                              --
  10. --                                                                          --
  11. -- This specification is adapted from the Ada Reference Manual for use with --
  12. -- GNAT.  In accordance with the copyright of that document, you can freely --
  13. -- copy and modify this specification,  provided that if you redistribute a --
  14. -- modified version,  any changes that you have made are clearly indicated. --
  15. --                                                                          --
  16. ------------------------------------------------------------------------------
  17.  
  18. --  In Ada 95, the package Ada.Wide_Text_IO.Float_IO is a subpackage of
  19. --  Wide_Text_IO. This is for compatibility with Text_IO. In GNAT we make
  20. --  it a child package to avoid loading the necessary code if Float_IO
  21. --  is not instantiated. See routine Rtsfind.Text_IO_Kludge for a description
  22. --  of how we patch up the difference in semantics so that it is invisible
  23. --  to the Ada programmer. Note that since in GNAT Wide_Text_IO is itself a
  24. --  child of Ada.Text_IO, this package is a child of Ada.Text_IO.Wide_Text_IO.
  25.  
  26. private generic
  27.    type Num is digits <>;
  28.  
  29. package Ada.Text_IO.Wide_Text_IO.Float_IO is
  30.  
  31.    Default_Fore : Field := 2;
  32.    Default_Aft  : Field := Num'Digits - 1;
  33.    Default_Exp  : Field := 3;
  34.  
  35.    procedure Get
  36.      (File  : in File_Type;
  37.       Item  : out Num;
  38.       Width : in Field := 0);
  39.  
  40.    procedure Get
  41.      (Item  : out Num;
  42.       Width : in Field := 0);
  43.  
  44.    procedure Put
  45.      (File : in File_Type;
  46.       Item : in Num;
  47.       Fore : in Field := Default_Fore;
  48.       Aft  : in Field := Default_Aft;
  49.       Exp  : in Field := Default_Exp);
  50.  
  51.    procedure Put
  52.      (Item : in Num;
  53.       Fore : in Field := Default_Fore;
  54.       Aft  : in Field := Default_Aft;
  55.       Exp  : in Field := Default_Exp);
  56.  
  57.    procedure Get
  58.      (From : in Wide_String;
  59.       Item : out Num;
  60.       Last : out Positive);
  61.  
  62.    procedure Put
  63.      (To   : out Wide_String;
  64.       Item : in Num;
  65.       Aft  : in Field := Default_Aft;
  66.       Exp  : in Field := Default_Exp);
  67.  
  68. end Ada.Text_IO.Wide_Text_IO.Float_IO;
  69.