VTK
vtkXMLPStructuredGridReader.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkXMLPStructuredGridReader.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
29 #ifndef vtkXMLPStructuredGridReader_h
30 #define vtkXMLPStructuredGridReader_h
31 
32 #include "vtkIOXMLModule.h" // For export macro
34 
35 class vtkStructuredGrid;
36 
38 {
39 public:
41  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
43 
47  vtkStructuredGrid *GetOutput();
48 
52  vtkStructuredGrid* GetOutput(int idx);
53 
54 protected:
56  ~vtkXMLPStructuredGridReader() VTK_OVERRIDE;
57 
58  vtkStructuredGrid* GetPieceInput(int index);
59 
60  void SetupEmptyOutput() VTK_OVERRIDE;
61  const char* GetDataSetName() VTK_OVERRIDE;
62  void SetOutputExtent(int* extent) VTK_OVERRIDE;
63  void GetPieceInputExtent(int index, int* extent) VTK_OVERRIDE;
64  int ReadPrimaryElement(vtkXMLDataElement* ePrimary) VTK_OVERRIDE;
65  void SetupOutputData() VTK_OVERRIDE;
66  int ReadPieceData() VTK_OVERRIDE;
67  vtkXMLDataReader* CreatePieceReader() VTK_OVERRIDE;
68  int FillOutputPortInformation(int, vtkInformation*) VTK_OVERRIDE;
69 
70  // The PPoints element with point information.
71  vtkXMLDataElement* PPointsElement;
72 
73 private:
74  vtkXMLPStructuredGridReader(const vtkXMLPStructuredGridReader&) VTK_DELETE_FUNCTION;
75  void operator=(const vtkXMLPStructuredGridReader&) VTK_DELETE_FUNCTION;
76 };
77 
78 #endif
Represents an XML element and those nested inside.
Store vtkAlgorithm input/output information.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
a simple class to control print indentation
Definition: vtkIndent.h:33
Superclass for parallel structured data XML readers.
Superclass for VTK XML file readers.
topologically regular array of data
Read PVTK XML StructuredGrid files.
static vtkAlgorithm * New()