vtk-m/vtkm/io/VTKDataSetWriter.h

38 lines
1011 B
C
Raw Normal View History

2020-04-29 15:11:02 +00:00
//============================================================================
// 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_DataSetWriter_h
#define vtk_m_io_DataSetWriter_h
#include <vtkm/cont/DataSet.h>
#include <vtkm/io/vtkm_io_export.h>
2020-04-29 15:11:02 +00:00
namespace vtkm
{
namespace io
{
struct VTKM_IO_EXPORT VTKDataSetWriter
2020-04-29 15:11:02 +00:00
{
public:
VTKM_CONT VTKDataSetWriter(const char* fileName);
VTKM_CONT VTKDataSetWriter(const std::string& fileName);
2020-04-29 15:11:02 +00:00
VTKM_CONT void WriteDataSet(const vtkm::cont::DataSet& dataSet, bool just_points = false) const;
2020-04-29 15:11:02 +00:00
private:
std::string FileName;
}; //struct VTKDataSetWriter
}
} //namespace vtkm::io
#endif //vtk_m_io_DataSetWriter_h