VTK  9.3.1
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 
22 VTK_ABI_NAMESPACE_BEGIN
23 class vtkPolyData;
24 
25 class VTKIOGEOMETRY_EXPORT vtkHoudiniPolyDataWriter : public vtkWriter
26 {
27 public:
28  static vtkHoudiniPolyDataWriter* New();
30  void PrintSelf(ostream& os, vtkIndent indent) override;
31 
33 
36  vtkGetFilePathMacro(FileName);
37  vtkSetFilePathMacro(FileName);
39 
40 protected:
42  ~vtkHoudiniPolyDataWriter() override;
43 
44  void WriteData() override;
45 
47 
48  char* FileName;
49 
50 private:
52  void operator=(const vtkHoudiniPolyDataWriter&) = delete;
53 };
54 
55 VTK_ABI_NAMESPACE_END
56 #endif
Store vtkAlgorithm input/output information.
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:79
abstract class to write data to file(s)
Definition: vtkWriter.h:34
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
write vtk polygonal data to Houdini file.
a simple class to control print indentation
Definition: vtkIndent.h:28
virtual int FillInputPortInformation(int port, vtkInformation *info)
Fill the input port information objects for this algorithm.
static vtkAlgorithm * New()
virtual void WriteData()=0