VTK-m  2.0
VTKStructuredPointsReader.h
Go to the documentation of this file.
1 //============================================================================
2 // Copyright (c) Kitware, Inc.
3 // All rights reserved.
4 // See LICENSE.txt for details.
5 //
6 // This software is distributed WITHOUT ANY WARRANTY; without even
7 // the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
8 // PURPOSE. See the above copyright notice for more information.
9 //============================================================================
10 #ifndef vtk_m_io_VTKStructuredPointsReader_h
11 #define vtk_m_io_VTKStructuredPointsReader_h
12 
14 
15 namespace vtkm
16 {
17 namespace io
18 {
19 
20 class VTKM_IO_EXPORT VTKStructuredPointsReader : public VTKDataSetReaderBase
21 {
22 public:
23  explicit VTKM_CONT VTKStructuredPointsReader(const char* fileName);
24  explicit VTKM_CONT VTKStructuredPointsReader(const std::string& fileName);
25 
26 private:
27  VTKM_CONT void Read() override;
28 };
29 }
30 } // namespace vtkm::io
31 
32 #endif // vtk_m_io_VTKStructuredPointsReader_h
vtkm
Groups connected points that have the same field value.
Definition: Atomic.h:19
vtkm::io::VTKDataSetReaderBase
Definition: VTKDataSetReaderBase.h:97
vtkm::io::VTKStructuredPointsReader
Definition: VTKStructuredPointsReader.h:20
VTKM_CONT
#define VTKM_CONT
Definition: ExportMacros.h:57
VTKDataSetReaderBase.h