VTK
9.5.20251214
Common
Core
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
9
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 <ios>
// Ala <iostream>.
20
#include <istream>
// Include real ansi istream.
21
#include <ostream>
// Include real ansi ostream.
22
#include <streambuf>
// Ala <iostream>.
23
24
// Need these in global namespace so the same code will work with ansi
25
// and old-style streams.
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
Generated on Sun Dec 14 2025 07:57:12 for VTK by
1.13.2