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

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --               A D A . T E X T _ I O . C O M P L E X _ I O                --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.6 $                              --
  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;
  27.  
  28. with Ada.Text_IO.Complex_Aux;
  29.  
  30. package body Ada.Text_IO.Complex_IO is
  31.  
  32.    package Aux renames Ada.Text_IO.Complex_Aux;
  33.  
  34.    subtype LLF is Long_Long_Float;
  35.    --  Type used for calls to routines in Aux
  36.  
  37.    ---------
  38.    -- Get --
  39.    ---------
  40.  
  41.    procedure Get
  42.      (File  : in  File_Type;
  43.       Item  : out Complex_Types.Complex;
  44.       Width : in  Field := 0)
  45.    is
  46.       Real_Item  : Real'Base;
  47.       Imag_Item  : Real'Base;
  48.  
  49.    begin
  50.       Aux.Get (File, LLF (Real_Item), LLF (Imag_Item), Width);
  51.       Item := (Real_Item, Imag_Item);
  52.  
  53.    exception
  54.       when Constraint_Error => raise Data_Error;
  55.    end Get;
  56.  
  57.    ---------
  58.    -- Get --
  59.    ---------
  60.  
  61.    procedure Get
  62.      (Item  : out Complex_Types.Complex;
  63.       Width : in  Field := 0)
  64.    is
  65.    begin
  66.       Get (Current_In, Item, Width);
  67.    end Get;
  68.  
  69.    ---------
  70.    -- Get --
  71.    ---------
  72.  
  73.    procedure Get
  74.      (From : in  String;
  75.       Item : out Complex_Types.Complex;
  76.       Last : out Positive)
  77.    is
  78.       Real_Item : Real'Base;
  79.       Imag_Item : Real'Base;
  80.  
  81.    begin
  82.       Aux.Gets (From, LLF (Real_Item), LLF (Imag_Item), Last);
  83.  
  84.    exception
  85.       when Data_Error => raise Constraint_Error;
  86.    end Get;
  87.  
  88.    ---------
  89.    -- Put --
  90.    ---------
  91.  
  92.    procedure Put
  93.      (File : in File_Type;
  94.       Item : in Complex_Types.Complex;
  95.       Fore : in Field := Default_Fore;
  96.       Aft  : in Field := Default_Aft;
  97.       Exp  : in Field := Default_Exp)
  98.    is
  99.    begin
  100.       Aux.Put (File, LLF (Re (Item)), LLF (Im (Item)), Fore, Aft, Exp);
  101.    end Put;
  102.  
  103.    ---------
  104.    -- Put --
  105.    ---------
  106.  
  107.    procedure Put
  108.      (Item : in Complex_Types.Complex;
  109.       Fore : in Field := Default_Fore;
  110.       Aft  : in Field := Default_Aft;
  111.       Exp  : in Field := Default_Exp)
  112.    is
  113.    begin
  114.       Put (Current_Out, Item, Fore, Aft, Exp);
  115.    end Put;
  116.  
  117.    ---------
  118.    -- Put --
  119.    ---------
  120.  
  121.    procedure Put
  122.      (To   : out String;
  123.       Item : in  Complex_Types.Complex;
  124.       Aft  : in  Field := Default_Aft;
  125.       Exp  : in  Field := Default_Exp)
  126.    is
  127.    begin
  128.       Aux.Puts (To, LLF (Re (Item)), LLF (Im (Item)), Aft, Exp);
  129.    end Put;
  130.  
  131. end Ada.Text_IO.Complex_IO;
  132.