VTK  9.1.0
vtkXMLCompositeDataSetWriterHelper.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkXMLCompositeDataSetWriterHelper.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
26#ifndef vtkXMLCompositeDataSetWriterHelper_h
27#define vtkXMLCompositeDataSetWriterHelper_h
28
29#include "vtkIOParallelXMLModule.h" // For export macro
30#include "vtkObject.h"
31#include "vtkSmartPointer.h" // for vtkSmartPointer
32
33#include <map> // for std::map
34#include <string> // for std::string
35
37class vtkDataObject;
38
39class VTKIOPARALLELXML_EXPORT vtkXMLCompositeDataSetWriterHelper : public vtkObject
40{
41public:
44 void PrintSelf(ostream& os, vtkIndent indent) override;
45
47
52 vtkGetObjectMacro(Writer, vtkXMLWriterBase);
54
70
71protected:
74
80
81private:
83 void operator=(const vtkXMLCompositeDataSetWriterHelper&) = delete;
84
85 std::map<int, vtkSmartPointer<vtkXMLWriterBase>> WriterCache;
86 vtkXMLWriterBase* Writer;
87};
88
89#endif
general representation of visualization data
a simple class to control print indentation
Definition: vtkIndent.h:113
abstract base class for most VTK objects
Definition: vtkObject.h:73
a helper class used by vtkXMLWriter2 subclasses that write composite datasets.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkXMLCompositeDataSetWriterHelper * New()
vtkXMLWriterBase * GetWriter(int dataType)
Method to obtain a writer for the given data type.
void SetWriter(vtkXMLWriterBase *writer)
Get/Set the writer using this helper.
std::string WriteDataSet(const std::string &path, const std::string &prefix, vtkDataObject *data)
Write a specific dataset to a file.
Abstract base class for VTK-XML writers.
@ data
Definition: vtkX3D.h:321
@ string
Definition: vtkX3D.h:496