VTK  9.3.20240420
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
53#ifndef vtkXMLMultiBlockDataWriter_h
54#define vtkXMLMultiBlockDataWriter_h
55
56#include "vtkIOXMLModule.h" // For export macro
58
59VTK_ABI_NAMESPACE_BEGIN
61{
62public:
65 void PrintSelf(ostream& os, vtkIndent indent) override;
66
70 const char* GetDefaultFileExtension() override { return "vtm"; }
71
72protected:
75
76 int FillInputPortInformation(int port, vtkInformation* info) override;
77
78 // Internal method called recursively to create the xml tree for the children
79 // of compositeData.
81 vtkCompositeDataSet* compositeData, vtkXMLDataElement* parent, int& writerIdx) override;
82
83private:
85 void operator=(const vtkXMLMultiBlockDataWriter&) = delete;
86};
87
88VTK_ABI_NAMESPACE_END
89#endif
abstract superclass for composite (multi-block or AMR) datasets
a simple class to control print indentation
Definition vtkIndent.h:108
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.