vtk-m/vtkm/io/VTKRectilinearGridReader.h

33 lines
974 B
C
Raw Normal View History

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