VTK  9.3.20240424
vtkIOStream.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
10#ifndef vtkIOStream_h
11#define vtkIOStream_h
12
13#ifdef _MSC_VER
14#pragma warning(push, 3)
15#endif
16
17#include <fstream> // Include real ansi ifstream and ofstream.
18#include <iomanip> // Include real ansi io manipulators.
19#include <iostream> // Include real ansi istream and ostream.
20
21// Need these in global namespace so the same code will work with ansi
22// and old-style streams.
23using std::cerr;
24using std::cin;
25using std::cout;
26using std::dec;
27using std::endl;
28using std::ends;
29using std::fstream;
30using std::hex;
31using std::ios;
32using std::istream;
33using std::ostream;
34using std::setfill;
35using std::setprecision;
36using std::setw;
37
38#ifdef _MSC_VER
39#pragma warning(pop)
40#endif
41
42#endif // vtkIOStream_h
43// VTK-HeaderTest-Exclude: vtkIOStream.h