// @(#)root/base:$Name: $:$Id: Riosfwd.h,v 1.2 2002/09/10 14:54:06 rdm Exp $ // Author: Fons Rademakers 23/1/02 /************************************************************************* * Copyright (C) 1995-2002, Rene Brun and Fons Rademakers. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ #ifndef ROOT_Riosfwd #define ROOT_Riosfwd #ifndef ROOT_RConfig #include "RConfig.h" #endif #if defined(R__ANSISTREAM) # if defined(R__TMPLTSTREAM) # include # else # include # endif using std::istream; using std::ostream; using std::fstream; using std::ifstream; using std::ofstream; #elif R__MWERKS template class ios_traits; template class basic_istream; template class basic_ostream; template class basic_fstream; template class basic_ofstream; template class basic_ifstream; typedef basic_istream > istream; typedef basic_ostream > ostream; typedef basic_fstream > fstream; typedef basic_ofstream > ofstream; typedef basic_ifstream > ifstream; #else class istream; class ostream; class fstream; class ifstream; class ofstream; #endif #endif