/*========================================================================= Program: Visualization Toolkit Module: vtkIOStreamFwd.h Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notice for more information. =========================================================================*/ /** * @class vtkIOStreamFwd * @brief Forward-declare C++ iostreams as used by VTK. * * This header forward-declares the proper streams. */ #ifndef vtkIOStreamFwd_h #define vtkIOStreamFwd_h #include "vtkConfigure.h" #ifdef _MSC_VER #pragma warning(push, 3) #endif // Forward-declare ansi streams. #include using std::filebuf; using std::fstream; using std::ios; using std::iostream; using std::istream; using std::ostream; using std::streambuf; #ifdef _MSC_VER #pragma warning(pop) #endif #endif // vtkIOStreamFwd_h // VTK-HeaderTest-Exclude: vtkIOStreamFwd.h