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/vtkXMLPStructuredDataWriter.h

63 lines
2.0 KiB
C++

/*=========================================================================
Program: Visualization Toolkit
Module: vtkXMLPStructuredDataWriter.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 vtkXMLPStructuredDataWriter
* @brief Superclass for PVTK XML structured data writers.
*
* vtkXMLPStructuredDataWriter provides PVTK XML writing functionality
* that is common among all the parallel structured data formats.
*/
#ifndef vtkXMLPStructuredDataWriter_h
#define vtkXMLPStructuredDataWriter_h
#include "vtkIOParallelXMLModule.h" // For export macro
#include "vtkXMLPDataWriter.h"
#include <map> // for keeping track of extents
#include <vector> // for keeping track of extents
class vtkXMLStructuredDataWriter;
class VTKIOPARALLELXML_EXPORT vtkXMLPStructuredDataWriter : public vtkXMLPDataWriter
{
public:
vtkTypeMacro(vtkXMLPStructuredDataWriter,vtkXMLPDataWriter);
void PrintSelf(ostream& os, vtkIndent indent);
protected:
vtkXMLPStructuredDataWriter();
~vtkXMLPStructuredDataWriter();
virtual vtkXMLStructuredDataWriter* CreateStructuredPieceWriter()=0;
void WritePrimaryElementAttributes(ostream &os, vtkIndent indent);
void WritePPieceAttributes(int index);
vtkXMLWriter* CreatePieceWriter(int index);
virtual int WriteInternal();
virtual void PrepareSummaryFile();
virtual int WritePiece(int index);
private:
vtkXMLPStructuredDataWriter(const vtkXMLPStructuredDataWriter&) VTK_DELETE_FUNCTION;
void operator=(const vtkXMLPStructuredDataWriter&) VTK_DELETE_FUNCTION;
typedef std::map<int, std::vector<int> > ExtentsType;
ExtentsType Extents;
};
#endif