00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef ROOT_Rstrstream
00013 #define ROOT_Rstrstream
00014
00015 #ifndef ROOT_RConfig
00016 #include "RConfig.h"
00017 #endif
00018
00019 #if defined(R__ANSISTREAM)
00020 # if defined(R__SSTREAM)
00021 # include <sstream>
00022 # else
00023 # include <strstream>
00024 # endif
00025 #else
00026 # ifndef R__WIN32
00027 # include <strstream.h>
00028 # else
00029 # include <strstrea.h>
00030 # endif
00031 #endif
00032
00033 #endif