home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Internet 2000 May / MICD_2000_05.iso / CBuilder5 / INSTALL / DATA1.CAB / Program_Built_Files / Include / iostream.h < prev    next >
C/C++ Source or Header  |  2000-02-01  |  2KB  |  61 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.  * Copyright (c) 1994-1999 Rogue Wave Software, Inc.  All Rights Reserved.
  15.  *
  16.  * This computer software is owned by Rogue Wave Software, Inc. and is
  17.  * protected by U.S. copyright laws and other laws and by international
  18.  * treaties.  This computer software is furnished by Rogue Wave Software,
  19.  * Inc. pursuant to a written license agreement and may be used, copied,
  20.  * transmitted, and stored only in accordance with the terms of such
  21.  * license and with the inclusion of the above copyright notice.  This
  22.  * computer software or any other copies thereof may not be provided or
  23.  * otherwise made available to any other person.
  24.  *
  25.  * U.S. Government Restricted Rights.  This computer software is provided
  26.  * with Restricted Rights.  Use, duplication, or disclosure by the
  27.  * Government is subject to restrictions as set forth in subparagraph (c)
  28.  * (1) (ii) of The Rights in Technical Data and Computer Software clause
  29.  * at DFARS 252.227-7013 or subparagraphs (c) (1) and (2) of the
  30.  * Commercial Computer Software û Restricted Rights at 48 CFR 52.227-19,
  31.  * as applicable.  Manufacturer is Rogue Wave Software, Inc., 5500
  32.  * Flatiron Parkway, Boulder, Colorado 80301 USA.
  33.  *
  34.  **************************************************************************/
  35.  
  36. #include <stdcomp.h>
  37. #include <istream>
  38. #include <ostream>
  39.  
  40. #ifndef _RWSTD_NO_NAMESPACE
  41. namespace std {
  42. #endif
  43.  
  44.   extern ostream _RWSTDExport clog;
  45.  
  46. #ifndef _RWSTD_NO_WIDE_CHAR
  47.   extern wostream _RWSTDExport wclog;
  48. #endif
  49. #ifndef _RWSTD_NO_NAMESPACE
  50. }
  51. #endif
  52.  
  53. #endif // __STD_IOSTREAM_
  54.  
  55. #ifndef __USING_STD_NAMES__
  56.   using namespace std;
  57. #endif
  58.  
  59. #pragma option pop
  60. #endif /* __IOSTREAM_H */
  61.