VTK  9.3.20240419
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.
23 using std::cerr;
24 using std::cin;
25 using std::cout;
26 using std::dec;
27 using std::endl;
28 using std::ends;
29 using std::fstream;
30 using std::hex;
31 using std::ios;
32 using std::istream;
33 using std::ostream;
34 using std::setfill;
35 using std::setprecision;
36 using std::setw;
37 
38 #ifdef _MSC_VER
39 #pragma warning(pop)
40 #endif
41 
42 #endif // vtkIOStream_h
43 // VTK-HeaderTest-Exclude: vtkIOStream.h