//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt 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. //============================================================================ #ifndef vtk_m_io_VTKStructuredGridReader_h #define vtk_m_io_VTKStructuredGridReader_h #include namespace vtkm { namespace io { class VTKM_IO_EXPORT VTKStructuredGridReader : public VTKDataSetReaderBase { public: explicit VTKM_CONT VTKStructuredGridReader(const char* fileName); explicit VTKM_CONT VTKStructuredGridReader(const std::string& fileName); private: VTKM_CONT void Read() override; }; } } // namespace vtkm::io #endif // vtk_m_io_VTKStructuredGridReader_h