VTK  9.2.6
vtkUnstructuredGridWriter.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkUnstructuredGridWriter.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=========================================================================*/
37#ifndef vtkUnstructuredGridWriter_h
38#define vtkUnstructuredGridWriter_h
39
40#include "vtkDataWriter.h"
41#include "vtkIOLegacyModule.h" // For export macro
43
44class VTKIOLEGACY_EXPORT vtkUnstructuredGridWriter : public vtkDataWriter
45{
46public:
49 void PrintSelf(ostream& os, vtkIndent indent) override;
50
52
58
59protected:
61 ~vtkUnstructuredGridWriter() override = default;
62
63 void WriteData() override;
64
65 int WriteCellsAndFaces(ostream* fp, vtkUnstructuredGridBase* grid, const char* label);
66
67 int FillInputPortInformation(int port, vtkInformation* info) override;
68
69private:
71 void operator=(const vtkUnstructuredGridWriter&) = delete;
72};
73
74#endif
helper class for objects that write VTK data files
a simple class to control print indentation
Definition vtkIndent.h:49
Store vtkAlgorithm input/output information.
dataset represents arbitrary combinations of all possible cell types.
write vtk unstructured grid data file
int WriteCellsAndFaces(ostream *fp, vtkUnstructuredGridBase *grid, const char *label)
vtkUnstructuredGridBase * GetInput()
Get the input to this writer.
vtkUnstructuredGridWriter()=default
vtkUnstructuredGridBase * GetInput(int port)
Get the input to this writer.
void WriteData() override
~vtkUnstructuredGridWriter() override=default
static vtkUnstructuredGridWriter * New()
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for type information and printing.