/*!
\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
- pre-ANSI iostream class
This class combines the istream and ostream classes. You use it to carry
out bidirectional operations (inserting into and extracting from a single
sequence of characters).
- ANSI iostream
The class basic_iostream inherits a number of functions from classes
basic_ostream<charT, traits> and basic_istream<charT, traits>. They assist
in formatting and interpreting sequences of characters controlled by a
stream buffer. Two groups of functions share common properties, the formatted
functions and the unformatted functions.
*/
#ifndef STIOSTREAM_H
#define STIOSTREAM_H
#include "Riostream.h"
#ifndef __CINT__
#ifdef __GNUC__
#if __GNUC__>=3
# include
#else
# include
#endif
#endif
#endif
#endif