// -*- C++ -*- //============================================================================= // drt/sys/strstream.h // Provides the proper header for lame systems (such as // Microsoft VC++ 6.0). // // History // 0.01, 1998-07-14, David R Tribble. // First cut. // // 0.02, 1999-02-26, David R Tribble. // Moved into drt/sys/. // // Copyright ©1998-1999, by David R. Tribble, all rights reserved. // See "drt/sys/copyr.txt" for more information. //----------------------------------------------------------------------------- #ifndef drt_std_strstream_h #define drt_std_strstream_h 1 // Identification #ifndef NO_H_IDENT static const char drt_std_strstream_h_id[] = "@(#)drt/sys/strstream.h 0.02"; #endif // Verify include order #ifndef __cplusplus #error Include "strstream.h" only in C++ #endif // Include the proper system header file #ifdef DRT_OS_WIN32 #include // This is unbelievably lame! #else #include #endif #endif // drt_std_strstream_h // End strstream.h