VTK  9.3.20240423
vtkHoudiniPolyDataWriter.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
16#ifndef vtkHoudiniPolyDataWriter_h
17#define vtkHoudiniPolyDataWriter_h
18
19#include "vtkIOGeometryModule.h" // For export macro
20#include "vtkWriter.h"
21
22VTK_ABI_NAMESPACE_BEGIN
23class vtkPolyData;
24
25class VTKIOGEOMETRY_EXPORT vtkHoudiniPolyDataWriter : public vtkWriter
26{
27public:
30 void PrintSelf(ostream& os, vtkIndent indent) override;
31
33
39
40protected:
43
44 void WriteData() override;
45
46 int FillInputPortInformation(int port, vtkInformation* info) override;
47
48 char* FileName;
49
50private:
52 void operator=(const vtkHoudiniPolyDataWriter&) = delete;
53};
54
55VTK_ABI_NAMESPACE_END
56#endif
write vtk polygonal data to Houdini file.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkHoudiniPolyDataWriter() override
vtkGetFilePathMacro(FileName)
Specifies the delimited text file to be loaded.
void WriteData() override
vtkSetFilePathMacro(FileName)
Specifies the delimited text file to be loaded.
static vtkHoudiniPolyDataWriter * New()
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
a simple class to control print indentation
Definition vtkIndent.h:108
Store vtkAlgorithm input/output information.
concrete dataset represents vertices, lines, polygons, and triangle strips
abstract class to write data to file(s)
Definition vtkWriter.h:35