1 /*! 2 \file Stiostream.h 3 4 \author Victor Perev 5 \date 8/22/2003 6 7 Wrapper for "iostream.h" using ROOT definitions (compiler 8 dependence, OS/platform issues). There are at least two 9 version of iostream (one ANSI and one not). Old gcc 10 (pre 3.2) did not use the ANSI way. 11 12 13 Working Paper for Draft Proposed INternational Standard for Information 14 Systems (ANSI) -- Programming Language C++, Section 27.6.1.4.1 15 16 Description is as follow 17 18 <UL> 19 <LI><U>pre-ANSI iostream class</U><BR> 20 This class combines the istream and ostream classes. You use it to carry 21 out bidirectional operations (inserting into and extracting from a single 22 sequence of characters). 23 24 <LI><U>ANSI iostream</U><BR> 25 The class basic_iostream inherits a number of functions from classes 26 <TT>basic_ostream<charT, traits></TT> and <TT>basic_istream<charT, traits></TT>. They assist 27 in formatting and interpreting sequences of characters controlled by a 28 stream buffer. Two groups of functions share common properties, the formatted 29 functions and the unformatted functions. 30 31 </UL> 32 33 */ 34 #ifndef STIOSTREAM_H 35 #define STIOSTREAM_H 36 #include "Riostream.h" 37 /* using namespace std; */ 38 using std::istream; 39 using std::ostream; 40 using std::fstream; 41 using std::ifstream; 42 using std::ofstream; 43 using std::cout; 44 using std::endl; 45 #endif 46