00001 #ifndef JOT_STD_STRSTREAM_H 00002 #define JOT_STD_STRSTREAM_H 00003 00004 #include "platform.H" 00005 00006 #ifdef JOT_NEW_STYLE_IOSTREAM 00007 #include <strstream> 00008 using namespace std; 00009 #elif defined JOT_BACKWARD_IOSTREAM 00010 #include <backward/strstream.h> 00011 #else 00012 #ifdef WIN32 00013 #include <strstrea.h> 00014 #else 00015 #include <strstream.h> 00016 #endif 00017 #endif 00018 #endif