1 // @(#)root/base:$Id$ 2 // Author: Fons Rademakers 19/7/02 3 4 /************************************************************************* 5 * Copyright (C) 1995-2002, Rene Brun and Fons Rademakers. * 6 * All rights reserved. * 7 * * 8 * For the licensing terms see $ROOTSYS/LICENSE. * 9 * For the list of contributors see $ROOTSYS/README/CREDITS. * 10 *************************************************************************/ 11 12 #ifndef ROOT_Rstrstream 13 #define ROOT_Rstrstream 14 15 #ifndef ROOT_RConfig 16 #include "RConfig.h" 17 #endif 18 19 #if defined(R__ANSISTREAM) 20 # if defined(R__SSTREAM) 21 # include <sstream> 22 # else 23 # include <strstream> 24 # endif 25 #else 26 # ifndef R__WIN32 27 # include <strstream.h> 28 # else 29 # include <strstrea.h> 30 # endif 31 #endif 32 33 #endif 34