// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen // SPDX-License-Identifier: BSD-3-Clause /** * @class vtkIOStream * @brief Include C++ iostreams as used by VTK. * * This header includes the proper streams. */ #ifndef vtkIOStream_h #define vtkIOStream_h #ifdef _MSC_VER #pragma warning(push, 3) #endif #include // Include real ansi ifstream and ofstream. #include // Include real ansi io manipulators. #include // Include real ansi istream and ostream. // Need these in global namespace so the same code will work with ansi // and old-style streams. using std::cerr; using std::cin; using std::cout; using std::dec; using std::endl; using std::ends; using std::fstream; using std::hex; using std::ios; using std::istream; using std::ostream; using std::setfill; using std::setprecision; using std::setw; #ifdef _MSC_VER #pragma warning(pop) #endif #endif // vtkIOStream_h // VTK-HeaderTest-Exclude: vtkIOStream.h