comac_desk_app/ThirdpartyLibs/Libs/windows-x86_64/vtk/include/vtkIOStreamFwd.h

45 lines
1.1 KiB
C
Raw Normal View History

2024-11-21 11:50:43 +08:00
/*=========================================================================
Program: Visualization Toolkit
Module: vtkIOStreamFwd.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/**
* @class vtkIOStreamFwd
* @brief Forward-declare C++ iostreams as used by VTK.
*
* This header forward-declares the proper streams.
*/
#ifndef vtkIOStreamFwd_h
#define vtkIOStreamFwd_h
#ifdef _MSC_VER
#pragma warning(push, 3)
#endif
// Forward-declare ansi streams.
#include <iosfwd>
using std::filebuf;
using std::fstream;
using std::ios;
using std::iostream;
using std::istream;
using std::ostream;
using std::streambuf;
#ifdef _MSC_VER
#pragma warning(pop)
#endif
#endif // vtkIOStreamFwd_h
// VTK-HeaderTest-Exclude: vtkIOStreamFwd.h