You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
1.9 KiB
C

/*=========================================================================
Program: Visualization Toolkit
Module: vtkXMLMultiBlockDataWriter.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm 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.
=========================================================================*/
/**
* @class vtkXMLMultiBlockDataWriter
* @brief writer for vtkMultiBlockDataSet.
*
* vtkXMLMultiBlockDataWriter is a vtkXMLCompositeDataWriter subclass to handle
* vtkMultiBlockDataSet.
*/
#ifndef vtkXMLMultiBlockDataWriter_h
#define vtkXMLMultiBlockDataWriter_h
#include "vtkIOXMLModule.h" // For export macro
#include "vtkXMLCompositeDataWriter.h"
class VTKIOXML_EXPORT vtkXMLMultiBlockDataWriter : public vtkXMLCompositeDataWriter
{
public:
static vtkXMLMultiBlockDataWriter* New();
vtkTypeMacro(vtkXMLMultiBlockDataWriter, vtkXMLCompositeDataWriter);
void PrintSelf(ostream& os, vtkIndent indent) override;
/**
* Get the default file extension for files written by this writer.
*/
const char* GetDefaultFileExtension() override { return "vtm"; }
protected:
vtkXMLMultiBlockDataWriter();
~vtkXMLMultiBlockDataWriter() override;
int FillInputPortInformation(int port, vtkInformation* info) override;
// Internal method called recursively to create the xml tree for the children
// of compositeData.
int WriteComposite(
vtkCompositeDataSet* compositeData, vtkXMLDataElement* parent, int& writerIdx) override;
private:
vtkXMLMultiBlockDataWriter(const vtkXMLMultiBlockDataWriter&) = delete;
void operator=(const vtkXMLMultiBlockDataWriter&) = delete;
};
#endif