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-wtinio.ads < prev    next >
Text File  |  1996-09-28  |  3KB  |  65 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 . I N T E G E R _ 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.Integer_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 Integer_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 range <>;
  28.  
  29. package Ada.Text_IO.Wide_Text_IO.Integer_IO is
  30.  
  31.    Default_Width : Field := Num'Width;
  32.    Default_Base  : Number_Base := 10;
  33.  
  34.    procedure Get
  35.      (File  : in File_Type;
  36.       Item  : out Num;
  37.       Width : in Field := 0);
  38.  
  39.    procedure Get
  40.      (Item  : out Num;
  41.       Width : in Field := 0);
  42.  
  43.    procedure Put
  44.      (File  : in File_Type;
  45.       Item  : in Num;
  46.       Width : in Field := Default_Width;
  47.       Base  : in Number_Base := Default_Base);
  48.  
  49.    procedure Put
  50.      (Item  : in Num;
  51.       Width : in Field := Default_Width;
  52.       Base  : in Number_Base := Default_Base);
  53.  
  54.    procedure Get
  55.      (From : in Wide_String;
  56.       Item : out Num;
  57.       Last : out Positive);
  58.  
  59.    procedure Put
  60.      (To   : out Wide_String;
  61.       Item : in Num;
  62.       Base : in Number_Base := Default_Base);
  63.  
  64. end Ada.Text_IO.Wide_Text_IO.Integer_IO;
  65.