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-tiflio.adb < prev    next >
Text File  |  1996-09-28  |  4KB  |  107 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --                 A D A . T E X T _ I O . F L O A T _ I O                  --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.2 $                              --
  10. --                                                                          --
  11. --        Copyright (c) 1992,1993,1994, 1995 NYU, All Rights Reserved       --
  12. --                                                                          --
  13. -- The GNAT library is free software; you can redistribute it and/or modify --
  14. -- it under terms of the GNU Library General Public License as published by --
  15. -- the Free Software  Foundation; either version 2, or (at your option) any --
  16. -- later version.  The GNAT library is distributed in the hope that it will --
  17. -- be useful, but WITHOUT ANY WARRANTY;  without even  the implied warranty --
  18. -- of MERCHANTABILITY  or  FITNESS FOR  A PARTICULAR PURPOSE.  See the  GNU --
  19. -- Library  General  Public  License for  more  details.  You  should  have --
  20. -- received  a copy of the GNU  Library  General Public License  along with --
  21. -- the GNAT library;  see the file  COPYING.LIB.  If not, write to the Free --
  22. -- Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.        --
  23. --                                                                          --
  24. ------------------------------------------------------------------------------
  25.  
  26. with Ada.Text_IO.Float_Aux;
  27.  
  28. package body Ada.Text_IO.Float_IO is
  29.  
  30.    package Aux renames Ada.Text_IO.Float_Aux;
  31.  
  32.    ---------
  33.    -- Get --
  34.    ---------
  35.  
  36.    procedure Get
  37.      (File  : in File_Type;
  38.       Item  : out Num;
  39.       Width : in Field := 0)
  40.    is
  41.    begin
  42.       Aux.Get (File, Long_Long_Float (Item), Width);
  43.  
  44.    exception
  45.       when Constraint_Error => raise Data_Error;
  46.    end Get;
  47.  
  48.    procedure Get
  49.      (Item  : out Num;
  50.       Width : in Field := 0)
  51.    is
  52.    begin
  53.       Aux.Get (Current_In, Long_Long_Float (Item), Width);
  54.  
  55.    exception
  56.       when Constraint_Error => raise Data_Error;
  57.    end Get;
  58.  
  59.    procedure Get
  60.      (From : in String;
  61.       Item : out Num;
  62.       Last : out Positive)
  63.    is
  64.    begin
  65.       Aux.Gets (From, Long_Long_Float (Item), Last);
  66.  
  67.    exception
  68.       when Constraint_Error => raise Data_Error;
  69.    end Get;
  70.  
  71.    ---------
  72.    -- Put --
  73.    ---------
  74.  
  75.    procedure Put
  76.      (File : in File_Type;
  77.       Item : in Num;
  78.       Fore : in Field := Default_Fore;
  79.       Aft  : in Field := Default_Aft;
  80.       Exp  : in Field := Default_Exp)
  81.    is
  82.    begin
  83.       Aux.Put (File, Long_Long_Float (Item), Fore, Aft, Exp);
  84.    end Put;
  85.  
  86.    procedure Put
  87.      (Item : in Num;
  88.       Fore : in Field := Default_Fore;
  89.       Aft  : in Field := Default_Aft;
  90.       Exp  : in Field := Default_Exp)
  91.    is
  92.    begin
  93.       Aux.Put (Current_Out, Long_Long_Float (Item), Fore, Aft, Exp);
  94.    end Put;
  95.  
  96.    procedure Put
  97.      (To   : out String;
  98.       Item : in Num;
  99.       Aft  : in Field := Default_Aft;
  100.       Exp  : in Field := Default_Exp)
  101.    is
  102.    begin
  103.       Aux.Puts (To, Long_Long_Float (Item), Aft, Exp);
  104.    end Put;
  105.  
  106. end Ada.Text_IO.Float_IO;
  107.