VTK
9.1.0
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
Common
Core
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.
35
using
std::cerr;
36
using
std::cin;
37
using
std::cout;
38
using
std::dec;
39
using
std::endl;
40
using
std::ends;
41
using
std::fstream;
42
using
std::hex;
43
using
std::ios;
44
using
std::istream;
45
using
std::ostream;
46
using
std::setfill;
47
using
std::setprecision;
48
using
std::setw;
49
50
#ifdef _MSC_VER
51
#pragma warning(pop)
52
#endif
53
54
#endif
// vtkIOStream_h
55
// VTK-HeaderTest-Exclude: vtkIOStream.h
Generated on Fri Apr 21 2023 10:28:29 for VTK by
1.9.6