Warning, file /include/root/Rstrstream.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #ifndef ROOT_Rstrstream
0013 #define ROOT_Rstrstream
0014
0015 #include <ROOT/RConfig.hxx>
0016
0017 #if defined(R__ANSISTREAM)
0018 # if defined(R__SSTREAM)
0019 # include <sstream>
0020 # else
0021 # include <strstream>
0022 # endif
0023 #else
0024 # ifndef R__WIN32
0025 # include <strstream.h>
0026 # else
0027 # include <strstrea.h>
0028 # endif
0029 #endif
0030
0031 #endif