vtk-m/vtkm/io/VTKStructuredGridReader.h

33 lines
968 B
C
Raw Normal View History

2015-10-26 14:07:36 +00:00
//============================================================================
// Copyright (c) Kitware, Inc.
// All rights reserved.
// See LICENSE.txt for details.
2019-04-15 23:24:21 +00:00
//
2015-10-26 14:07:36 +00:00
// 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.
//============================================================================
#ifndef vtk_m_io_VTKStructuredGridReader_h
#define vtk_m_io_VTKStructuredGridReader_h
2015-10-26 14:07:36 +00:00
#include <vtkm/io/VTKDataSetReaderBase.h>
2015-10-26 14:07:36 +00:00
2017-05-18 14:29:41 +00:00
namespace vtkm
{
namespace io
{
2015-10-26 14:07:36 +00:00
class VTKM_IO_EXPORT VTKStructuredGridReader : public VTKDataSetReaderBase
2015-10-26 14:07:36 +00:00
{
public:
explicit VTKM_CONT VTKStructuredGridReader(const char* fileName);
explicit VTKM_CONT VTKStructuredGridReader(const std::string& fileName);
2015-10-26 14:07:36 +00:00
private:
VTKM_CONT void Read() override;
2015-10-26 14:07:36 +00:00
};
}
} // namespace vtkm::io
2015-10-26 14:07:36 +00:00
#endif // vtk_m_io_VTKStructuredGridReader_h