home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 May / PCP163A.iso / Runimage / Cbuilder4 / Include / IOSTREAM.H < prev    next >
Encoding:
C/C++ Source or Header  |  1999-01-26  |  2.5 KB  |  71 lines

  1. #ifndef __IOSTREAM_H
  2. #define __IOSTREAM_H
  3. #pragma option push -b -a8 -pc -Vx- -Ve- -w-inl -w-aus -w-sig
  4. // -*- C++ -*-
  5. #ifndef __STD_IOSTREAM__
  6. #define __STD_IOSTREAM__
  7.  
  8. /***************************************************************************
  9.  *
  10.  * iostream - iostream declarations
  11.  *
  12.  ***************************************************************************
  13.  *
  14.  * (c) Copyright 1994, 1998 Rogue Wave Software, Inc.
  15.  * ALL RIGHTS RESERVED
  16.  *
  17.  * The software and information contained herein are proprietary to, and
  18.  * comprise valuable trade secrets of, Rogue Wave Software, Inc., which
  19.  * intends to preserve as trade secrets such software and information.
  20.  * This software is furnished pursuant to a written license agreement and
  21.  * may be used, copied, transmitted, and stored only in accordance with
  22.  * the terms of such license and with the inclusion of the above copyright
  23.  * notice.  This software and information or any other copies thereof may
  24.  * not be provided or otherwise made available to any other person.
  25.  *
  26.  * Notwithstanding any other lease or license that may pertain to, or
  27.  * accompany the delivery of, this computer software and information, the
  28.  * rights of the Government regarding its use, reproduction and disclosure
  29.  * are as set forth in Section 52.227-19 of the FARS Computer
  30.  * Software-Restricted Rights clause.
  31.  * 
  32.  * Use, duplication, or disclosure by the Government is subject to
  33.  * restrictions as set forth in subparagraph (c)(1)(ii) of the Rights in
  34.  * Technical Data and Computer Software clause at DFARS 252.227-7013.
  35.  * Contractor/Manufacturer is Rogue Wave Software, Inc.,
  36.  * P.O. Box 2328, Corvallis, Oregon 97339.
  37.  *
  38.  * This computer software and information is distributed with "restricted
  39.  * rights."  Use, duplication or disclosure is subject to restrictions as
  40.  * set forth in NASA FAR SUP 18-52.227-79 (April 1985) "Commercial
  41.  * Computer Software-Restricted Rights (April 1985)."  If the Clause at
  42.  * 18-52.227-74 "Rights in Data General" is specified in the contract,
  43.  * then the "Alternate III" clause applies.
  44.  *
  45.  **************************************************************************/
  46.  
  47. #include <stdcomp.h>
  48. #include <istream>
  49. #include <ostream>
  50.  
  51. #ifndef _RWSTD_NO_NAMESPACE
  52. namespace std {
  53. #endif
  54.  
  55.   extern ostream _RWSTDExport clog;
  56.  
  57. #ifndef _RWSTD_NO_WIDE_CHAR
  58.   extern wostream _RWSTDExport wclog;
  59. #endif
  60. #ifndef _RWSTD_NO_NAMESPACE
  61. }
  62. #endif
  63.  
  64. #endif // __STD_IOSTREAM_
  65.  
  66. #ifndef __USING_STD_NAMES__
  67.   using namespace std;
  68. #endif
  69. #pragma option pop
  70. #endif /* __IOSTREAM_H */
  71.