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-tienio.ads < prev    next >
Text File  |  1996-09-28  |  2KB  |  58 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --           A D A . T E X T _ I O . E N U M E R A T I O N _ I O            --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.2 $                              --
  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.Text_IO.Enumeration_IO is a subpackage of
  19. --  Text_IO. This is for compatibility with Ada 83. In GNAT we make it a
  20. --  child package to avoid loading the necessary code if Enumeration_IO is
  21. --  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.
  24.  
  25. private generic
  26.    type Enum is (<>);
  27.  
  28. package Ada.Text_IO.Enumeration_IO is
  29.  
  30.    Default_Width : Field := 0;
  31.    Default_Setting : Type_Set := Upper_Case;
  32.  
  33.    procedure Get (File : in File_Type; Item : out Enum);
  34.    procedure Get (Item : out Enum);
  35.  
  36.    procedure Put
  37.      (File  : in File_Type;
  38.       Item  : in Enum;
  39.       Width : in Field := Default_Width;
  40.       Set   : in Type_Set := Default_Setting);
  41.  
  42.    procedure Put
  43.      (Item  : in Enum;
  44.       Width : in Field := Default_Width;
  45.       Set   : in Type_Set := Default_Setting);
  46.  
  47.    procedure Get
  48.      (From : in String;
  49.       Item : out Enum;
  50.       Last : out positive);
  51.  
  52.    procedure Put
  53.      (To   : out String;
  54.       Item : in Enum;
  55.       Set  : in Type_Set := Default_Setting);
  56.  
  57. end Ada.Text_IO.Enumeration_IO;
  58.