home *** CD-ROM | disk | FTP | other *** search
/ PC Format (South-Africa) 2001 June / PCFJune.iso / Xenon / C++ / FreeCommandLineTools.exe / Include / iterator.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-01-31  |  1.9 KB  |  53 lines

  1. #ifndef __ITERATOR_H
  2. #define __ITERATOR_H
  3. #pragma option push -b -a8 -pc -Vx- -Ve- -w-inl -w-aus -w-sig
  4. // -*- C++ -*-
  5. #ifndef __STD_ITERATOR__
  6. #define __STD_ITERATOR__
  7.  
  8. /***************************************************************************
  9.  *
  10.  * iterator - Includes rw/iterator and then includes streambuf which provides
  11.  * streambuf iterator.
  12.  *
  13.  ***************************************************************************
  14.  *
  15.  * Copyright (c) 1994-1999 Rogue Wave Software, Inc.  All Rights Reserved.
  16.  *
  17.  * This computer software is owned by Rogue Wave Software, Inc. and is
  18.  * protected by U.S. copyright laws and other laws and by international
  19.  * treaties.  This computer software is furnished by Rogue Wave Software,
  20.  * Inc. pursuant to a written license agreement and may be used, copied,
  21.  * transmitted, and stored only in accordance with the terms of such
  22.  * license and with the inclusion of the above copyright notice.  This
  23.  * computer software or any other copies thereof may not be provided or
  24.  * otherwise made available to any other person.
  25.  *
  26.  * U.S. Government Restricted Rights.  This computer software is provided
  27.  * with Restricted Rights.  Use, duplication, or disclosure by the
  28.  * Government is subject to restrictions as set forth in subparagraph (c)
  29.  * (1) (ii) of The Rights in Technical Data and Computer Software clause
  30.  * at DFARS 252.227-7013 or subparagraphs (c) (1) and (2) of the
  31.  * Commercial Computer Software รป Restricted Rights at 48 CFR 52.227-19,
  32.  * as applicable.  Manufacturer is Rogue Wave Software, Inc., 5500
  33.  * Flatiron Parkway, Boulder, Colorado 80301 USA.
  34.  *
  35.  **************************************************************************/
  36.  
  37. #ifndef __STD_RW_ITERATOR__
  38. #include <rw/iterator>
  39. #endif
  40.  
  41. #ifndef __STD_STREAMBUF__
  42. #include <streambuf>
  43. #endif
  44.  
  45. #endif /* __STD_ITERATOR__ */
  46.  
  47. #ifndef __USING_STD_NAMES__
  48.   using namespace std;
  49. #endif
  50.  
  51. #pragma option pop
  52. #endif /* __ITERATOR_H */
  53.