/*! \file Stiostream.h \author Victor Perev \date 8/22/2003 Wrapper for "iostream.h" using ROOT definitions (compiler dependence, OS/platform issues). There are at least two version of iostream (one ANSI and one not). Old gcc (pre 3.2) did not use the ANSI way. Working Paper for Draft Proposed INternational Standard for Information Systems (ANSI) -- Programming Language C++, Section 27.6.1.4.1 Description is as follow */ #ifndef STIOSTREAM_H #define STIOSTREAM_H #include "Riostream.h" #ifndef __CINT__ #ifdef __GNUC__ #if __GNUC__>=3 # include #else # include #endif #endif #endif #endif