VTK  9.3.0
vtkXMLMultiBlockDataWriter.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
14#ifndef vtkXMLMultiBlockDataWriter_h
15#define vtkXMLMultiBlockDataWriter_h
16
17#include "vtkIOXMLModule.h" // For export macro
19
20VTK_ABI_NAMESPACE_BEGIN
22{
23public:
26 void PrintSelf(ostream& os, vtkIndent indent) override;
27
31 const char* GetDefaultFileExtension() override { return "vtm"; }
32
33protected:
36
37 int FillInputPortInformation(int port, vtkInformation* info) override;
38
39 // Internal method called recursively to create the xml tree for the children
40 // of compositeData.
42 vtkCompositeDataSet* compositeData, vtkXMLDataElement* parent, int& writerIdx) override;
43
44private:
46 void operator=(const vtkXMLMultiBlockDataWriter&) = delete;
47};
48
49VTK_ABI_NAMESPACE_END
50#endif
abstract superclass for composite (multi-block or AMR) datasets
a simple class to control print indentation
Definition vtkIndent.h:29
Store vtkAlgorithm input/output information.
Writer for multi-group datasets.
Represents an XML element and those nested inside.
writer for vtkMultiBlockDataSet.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
static vtkXMLMultiBlockDataWriter * New()
int WriteComposite(vtkCompositeDataSet *compositeData, vtkXMLDataElement *parent, int &writerIdx) override
Internal method called recursively to create the xml tree for the children of compositeData as well a...
~vtkXMLMultiBlockDataWriter() override
const char * GetDefaultFileExtension() override
Get the default file extension for files written by this writer.