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

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --                  ADA.TEXT_IO.WIDE_TEXT_IO.TEXT_STREAMS                   --
  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. --  This is the RM package Ada.Wide_Text_IO.Text_Streams. Since in GNAT the
  19. --  parent Ada.Wide_Text_IO is a child of Ada.Text_IO, this package must be
  20. --  a child of Ada.Text_IO.Wide_Text_IO. The library level renaming of the
  21. --  package Ada.Text_IO.Wide_Text_IO as Ada.Wide_Text_IO will automatically
  22. --  make this package visible as Ada.Wide_Text_IO.Text_Streams.
  23.  
  24. with Ada.Streams;
  25.  
  26. private package Ada.Text_IO.Wide_Text_IO.Text_Streams is
  27.  
  28.    type Stream_Access is access all Streams.Root_Stream_Type'Class;
  29.  
  30.    function Stream (File : in File_Type) return Stream_Access;
  31.  
  32. end Ada.Text_IO.Wide_Text_IO.Text_Streams;
  33.