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-wtenio.ads < prev    next >
Text File  |  1996-09-28  |  3KB  |  59 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --                 ADA.TEXT_IO.WIDE_TEXT_IO.ENUMERATION_IO                  --
  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.Enumeration_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 Enumeration_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 Enum is (<>);
  28.  
  29. package Ada.Text_IO.Wide_Text_IO.Enumeration_IO is
  30.  
  31.    Default_Width : Field := 0;
  32.    Default_Setting : Type_Set := Upper_Case;
  33.  
  34.    procedure Get (File : in File_Type; Item : out Enum);
  35.    procedure Get (Item : out Enum);
  36.  
  37.    procedure Put
  38.      (File  : in File_Type;
  39.       Item  : in Enum;
  40.       Width : in Field := Default_Width;
  41.       Set   : in Type_Set := Default_Setting);
  42.  
  43.    procedure Put
  44.      (Item  : in Enum;
  45.       Width : in Field := Default_Width;
  46.       Set   : in Type_Set := Default_Setting);
  47.  
  48.    procedure Get
  49.      (From : in Wide_String;
  50.       Item : out Enum;
  51.       Last : out positive);
  52.  
  53.    procedure Put
  54.      (To   : out Wide_String;
  55.       Item : in Enum;
  56.       Set  : in Type_Set := Default_Setting);
  57.  
  58. end Ada.Text_IO.Wide_Text_IO.Enumeration_IO;
  59.