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-ticoau.ads < prev    next >
Text File  |  1996-09-28  |  3KB  |  64 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 _ A U X               --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.1 $                              --
  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. --  This package contains the routines for Ada.Text_IO.Complex_IO that are
  27. --  shared among separate instantiations of this package. The routines in
  28. --  this package are identical semantically to those in Complex_IO itself,
  29. --  except that the generic parameter Complex has been replaced by separate
  30. --  real and imaginary values of type Long_Long_Float, and default parameters
  31. --  have been removed because they are supplied explicitly by the calls from
  32. --  within the generic template.
  33.  
  34. package Ada.Text_IO.Complex_Aux is
  35.  
  36.    procedure Get
  37.      (File  : in  File_Type;
  38.       ItemR : out Long_Long_Float;
  39.       ItemI : out Long_Long_Float;
  40.       Width : Field);
  41.  
  42.    procedure Put
  43.      (File  : File_Type;
  44.       ItemR : Long_Long_Float;
  45.       ItemI : Long_Long_Float;
  46.       Fore  : Field;
  47.       Aft   : Field;
  48.       Exp   : Field);
  49.  
  50.    procedure Gets
  51.      (From  : String;
  52.       ItemR : out Long_Long_Float;
  53.       ItemI : out Long_Long_Float;
  54.       Last  : out Positive);
  55.  
  56.    procedure Puts
  57.      (To    : out String;
  58.       ItemR : Long_Long_Float;
  59.       ItemI : Long_Long_Float;
  60.       Aft   : Field;
  61.       Exp   : Field);
  62.  
  63. end Ada.Text_IO.Complex_Aux;
  64.