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.

72 lines
2.2 KiB
C++

/*=========================================================================
Program: Visualization Toolkit
Module: vtkXMLPStructuredGridWriter.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 vtkXMLPStructuredGridWriter
* @brief Write PVTK XML StructuredGrid files.
*
* vtkXMLPStructuredGridWriter writes the PVTK XML StructuredGrid
* file format. One structured grid input can be written into a
* parallel file format with any number of pieces spread across files.
* The standard extension for this writer's file format is "pvts".
* This writer uses vtkXMLStructuredGridWriter to write the individual
* piece files.
*
* @sa
* vtkXMLStructuredGridWriter
*/
#ifndef vtkXMLPStructuredGridWriter_h
#define vtkXMLPStructuredGridWriter_h
#include "vtkIOParallelXMLModule.h" // For export macro
#include "vtkXMLPStructuredDataWriter.h"
class vtkStructuredGrid;
class VTKIOPARALLELXML_EXPORT vtkXMLPStructuredGridWriter : public vtkXMLPStructuredDataWriter
{
public:
static vtkXMLPStructuredGridWriter* New();
vtkTypeMacro(vtkXMLPStructuredGridWriter, vtkXMLPStructuredDataWriter);
void PrintSelf(ostream& os, vtkIndent indent) override;
/**
* Get/Set the writer's input.
*/
vtkStructuredGrid* GetInput();
/**
* Get the default file extension for files written by this writer.
*/
const char* GetDefaultFileExtension() override;
protected:
vtkXMLPStructuredGridWriter();
~vtkXMLPStructuredGridWriter() override;
// see algorithm for more info
int FillInputPortInformation(int port, vtkInformation* info) override;
const char* GetDataSetName() override;
vtkXMLStructuredDataWriter* CreateStructuredPieceWriter() override;
void WritePData(vtkIndent indent) override;
private:
vtkXMLPStructuredGridWriter(const vtkXMLPStructuredGridWriter&) = delete;
void operator=(const vtkXMLPStructuredGridWriter&) = delete;
};
#endif