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.
nmWTAI-Platform/3rd/VTK7.1/include/vtkXMLPUnstructuredDataWrit...

53 lines
1.7 KiB
C++

/*=========================================================================
Program: Visualization Toolkit
Module: vtkXMLPUnstructuredDataWriter.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 vtkXMLPUnstructuredDataWriter
* @brief Superclass for PVTK XML unstructured data writers.
*
* vtkXMLPUnstructuredDataWriter provides PVTK XML writing
* functionality that is common among all the parallel unstructured
* data formats.
*/
#ifndef vtkXMLPUnstructuredDataWriter_h
#define vtkXMLPUnstructuredDataWriter_h
#include "vtkIOParallelXMLModule.h" // For export macro
#include "vtkXMLPDataWriter.h"
class vtkPointSet;
class vtkXMLUnstructuredDataWriter;
class VTKIOPARALLELXML_EXPORT vtkXMLPUnstructuredDataWriter : public vtkXMLPDataWriter
{
public:
vtkTypeMacro(vtkXMLPUnstructuredDataWriter,vtkXMLPDataWriter);
void PrintSelf(ostream& os, vtkIndent indent);
protected:
vtkXMLPUnstructuredDataWriter();
~vtkXMLPUnstructuredDataWriter();
vtkPointSet* GetInputAsPointSet();
virtual vtkXMLUnstructuredDataWriter* CreateUnstructuredPieceWriter()=0;
vtkXMLWriter* CreatePieceWriter(int index);
void WritePData(vtkIndent indent);
private:
vtkXMLPUnstructuredDataWriter(const vtkXMLPUnstructuredDataWriter&) VTK_DELETE_FUNCTION;
void operator=(const vtkXMLPUnstructuredDataWriter&) VTK_DELETE_FUNCTION;
};
#endif