VTK
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#include "vtkConfigure.h"
26
27#ifdef _MSC_VER
28#pragma warning (push, 3)
29#endif
30
31#include <iostream> // Include real ansi istream and ostream.
32#include <fstream> // Include real ansi ifstream and ofstream.
33#include <iomanip> // Include real ansi io manipulators.
34
35// Need these in global namespace so the same code will work with ansi
36// and old-style streams.
37using std::dec;
38using std::hex;
39using std::setw;
40using std::setfill;
41using std::setprecision;
42using std::cerr;
43using std::cout;
44using std::cin;
45using std::ios;
46using std::endl;
47using std::ends;
48using std::ostream;
49using std::istream;
50using std::ofstream;
51using std::ifstream;
52using std::fstream;
53
54#ifdef _MSC_VER
55#pragma warning(pop)
56#endif
57
58#endif // vtkIOStream_h
59// VTK-HeaderTest-Exclude: vtkIOStream.h