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