VTK
vtkIOStreamFwd.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkIOStreamFwd.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 vtkIOStreamFwd_h
23#define vtkIOStreamFwd_h
24
25#include "vtkConfigure.h"
26
27#ifdef _MSC_VER
28#pragma warning (push, 3)
29#endif
30
31// Forward-declare ansi streams.
32#include <iosfwd>
33using std::ios;
34using std::streambuf;
35using std::istream;
36using std::ostream;
37using std::iostream;
38using std::filebuf;
39using std::ifstream;
40using std::ofstream;
41using std::fstream;
42
43#ifdef _MSC_VER
44#pragma warning(pop)
45#endif
46
47#endif // vtkIOStreamFwd_h
48// VTK-HeaderTest-Exclude: vtkIOStreamFwd.h