VTK
9.6.2
Main Page
Related Pages
Topics
Namespaces
Classes
Files
File List
File Members
IO
Export
vtkJSONDataSetWriter.h
Go to the documentation of this file.
1
// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2
// SPDX-License-Identifier: BSD-3-Clause
25
26
#ifndef vtkJSONDataSetWriter_h
27
#define vtkJSONDataSetWriter_h
28
29
#include "vtkIOExportModule.h"
// For export macro
30
31
#include "
vtkWriter.h
"
32
33
#include <string>
// std::string used as parameters in a few methods
34
35
#include "
vtkDataArraySelection.h
"
// Instantiated
36
#include "
vtkNew.h
"
// Used for DataArray selection
37
38
VTK_ABI_NAMESPACE_BEGIN
39
class
vtkDataSet
;
40
class
vtkDataArray
;
41
class
vtkDataSetAttributes
;
42
class
vtkArchiver
;
43
struct
vtkJSONDataSetWriterFunctor;
44
45
class
VTKIOEXPORT_EXPORT
vtkJSONDataSetWriter
:
public
vtkWriter
46
{
47
public
:
48
using
vtkWriter::Write
;
49
51