home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wxos2240.zip / wxWindows-2.4.0 / include / wx / ioswrap.h < prev    next >
Text File  |  2001-06-06  |  889b  |  29 lines

  1. ///////////////////////////////////////////////////////////////////////////////
  2. // Name:        ioswrap.h
  3. // Purpose:     includes the correct iostream headers for current compiler
  4. // Author:      Vadim Zeitlin
  5. // Modified by:
  6. // Created:     03.02.99
  7. // RCS-ID:      $Id: ioswrap.h,v 1.4 2001/06/06 16:51:51 VZ Exp $
  8. // Copyright:   (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
  9. // Licence:     wxWindows license
  10. ///////////////////////////////////////////////////////////////////////////////
  11.  
  12. #if wxUSE_STD_IOSTREAM
  13.  
  14. #if wxUSE_IOSTREAMH
  15.     // N.B. BC++ doesn't have istream.h, ostream.h
  16. #   include <iostream.h>
  17. #else
  18. #   include <iostream>
  19. #   if 0 // this is not needed any longer now that we have wxSTD
  20. #   if defined(__VISUALC__) || defined(__MWERKS__)
  21.         using namespace std;
  22. #   endif
  23. #endif // 0
  24. #endif
  25.  
  26. #endif
  27.   // wxUSE_STD_IOSTREAM
  28.  
  29.