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.
37 using std::dec;
38 using std::hex;
39 using std::setw;
40 using std::setfill;
41 using std::setprecision;
42 using std::cerr;
43 using std::cout;
44 using std::cin;
45 using std::ios;
46 using std::endl;
47 using std::ends;
48 using std::ostream;
49 using std::istream;
50 using std::ofstream;
51 using std::ifstream;
52 using std::fstream;
53 
54 #ifdef _MSC_VER
55 #pragma warning(pop)
56 #endif
57 
58 #endif // vtkIOStream_h
59 // VTK-HeaderTest-Exclude: vtkIOStream.h