00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef _STLP_STRSTREAM_H
00017 # define _STLP_STRSTREAM_H
00018
00019 # ifndef _STLP_OUTERMOST_HEADER_ID
00020 # define _STLP_OUTERMOST_HEADER_ID 0x2071
00021 # include <stl/_prolog.h>
00022 # endif
00023
00024 # if defined ( _STLP_USE_NEW_IOSTREAMS )
00025
00026
00027 #ifdef __BORLANDC__
00028 # include <strstream.>
00029 #else
00030 # include <strstream>
00031 #endif
00032
00033 # include <iostream.h>
00034
00035
00036 # ifndef _STLP_HAS_NO_NAMESPACES
00037
00038 # ifdef _STLP_BROKEN_USING_DIRECTIVE
00039
00040 using namespace _STLP_STD;
00041
00042 # else
00043
00044 using _STLP_STD::strstreambuf;
00045 using _STLP_STD::istrstream;
00046 using _STLP_STD::ostrstream;
00047 using _STLP_STD::strstream;
00048
00049 # endif
00050
00051 # endif
00052
00053 # else
00054
00055
00056
00057 # if defined (_MSC_VER) && (_MSC_VER <= 1200) && !defined (__SYMBIAN32__)
00058 # include _STLP_NATIVE_OLD_STREAMS_HEADER(strstrea.h)
00059 # else
00060 # include _STLP_NATIVE_OLD_STREAMS_HEADER(strstream.h)
00061 # endif
00062
00063 # endif
00064
00065 # if (_STLP_OUTERMOST_HEADER_ID == 0x2071)
00066 # include <stl/_epilog.h>
00067 # undef _STLP_OUTERMOST_HEADER_ID
00068 # endif
00069
00070 #endif
00071
00072
00073
00074
00075