VTK
vtkXMLPDataSetWriter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkXMLPDataSetWriter.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 vtkXMLPDataSetWriter_h
30 #define vtkXMLPDataSetWriter_h
31 
32 #include "vtkIOParallelXMLModule.h" // For export macro
33 #include "vtkXMLPDataWriter.h"
34 
35 class VTKIOPARALLELXML_EXPORT vtkXMLPDataSetWriter : public vtkXMLPDataWriter
36 {
37 public:
39  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
40  static vtkXMLPDataSetWriter* New();
41 
46 
47 protected:
49  ~vtkXMLPDataSetWriter() VTK_OVERRIDE;
50 
51  // see algorithm for more info
52  int FillInputPortInformation(int port, vtkInformation* info) VTK_OVERRIDE;
53 
54  // Override writing method from superclass.
55  int WriteInternal() VTK_OVERRIDE;
56 
57  // Dummies to satisfy pure virtuals from superclass.
58  const char* GetDataSetName() VTK_OVERRIDE;
59  const char* GetDefaultFileExtension() VTK_OVERRIDE;
60  vtkXMLWriter* CreatePieceWriter(int index) VTK_OVERRIDE;
61 
62 private:
63  vtkXMLPDataSetWriter(const vtkXMLPDataSetWriter&) VTK_DELETE_FUNCTION;
64  void operator=(const vtkXMLPDataSetWriter&) VTK_DELETE_FUNCTION;
65 };
66 
67 #endif
vtkDataObject * GetInput()
Assign a data object as input.
Definition: vtkXMLWriter.h:218
Store vtkAlgorithm input/output information.
abstract class to specify dataset behavior
Definition: vtkDataSet.h:56
Write any type of PVTK XML file.
Superclass for VTK's XML file writers.
Definition: vtkXMLWriter.h:53
a simple class to control print indentation
Definition: vtkIndent.h:33
Write data in a parallel XML format.
static vtkAlgorithm * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.