Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members   Related Pages  

Common/vtkIOStreamFwd.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkIOStreamFwd.h,v $
00005   Language:  C++
00006 
00007   Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen 
00008   All rights reserved.
00009   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00010 
00011      This software is distributed WITHOUT ANY WARRANTY; without even 
00012      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00013      PURPOSE.  See the above copyright notice for more information.
00014 
00015 =========================================================================*/
00037 #ifndef __vtkIOStreamFwd_h
00038 #define __vtkIOStreamFwd_h
00039 
00040 #include "vtkConfigure.h"
00041 
00042 #ifdef VTK_USE_ANSI_STDLIB
00043 
00044 // Forward-declare ansi streams.
00045 # include <iosfwd>
00046 using std::ios;
00047 using std::streambuf;
00048 using std::istream;
00049 using std::ostream;
00050 using std::iostream;
00051 using std::filebuf;
00052 using std::ifstream;
00053 using std::ofstream;
00054 using std::fstream;
00055 #else
00056 # ifdef __BORLANDC__
00057 #  include <iosfwd.h>
00058 # else
00059 
00060 // Forward-declare non-ansi streams.
00061 class ios;
00062 class streambuf;
00063 class istream;
00064 class ostream;
00065 class iostream;
00066 class filebuf;
00067 class ifstream;
00068 class ofstream;
00069 class fstream;
00070 # endif
00071 
00072 #endif
00073 
00074 
00075 #endif // __vtkIOStreamFwd_h