VTK  9.1.0
vtkIOStream.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkIOStream.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
22#ifndef vtkIOStream_h
23#define vtkIOStream_h
24
25#ifdef _MSC_VER
26#pragma warning(push, 3)
27#endif
28
29#include <fstream> // Include real ansi ifstream and ofstream.
30#include <iomanip> // Include real ansi io manipulators.
31#include <iostream> // Include real ansi istream and ostream.
32
33// Need these in global namespace so the same code will work with ansi
34// and old-style streams.
35using std::cerr;
36using std::cin;
37using std::cout;
38using std::dec;
39using std::endl;
40using std::ends;
41using std::fstream;
42using std::hex;
43using std::ios;
44using std::istream;
45using std::ostream;
46using std::setfill;
47using std::setprecision;
48using std::setw;
49
50#ifdef _MSC_VER
51#pragma warning(pop)
52#endif
53
54#endif // vtkIOStream_h
55// VTK-HeaderTest-Exclude: vtkIOStream.h