VTK
vtkHoudiniPolyDataWriter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkHoudiniPolyDataWriter.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 =========================================================================*/
28 #ifndef vtkHoudiniPolyDataWriter_h
29 #define vtkHoudiniPolyDataWriter_h
30 
31 #include "vtkIOGeometryModule.h" // For export macro
32 #include "vtkWriter.h"
33 
34 class vtkPolyData;
35 
36 class VTKIOGEOMETRY_EXPORT vtkHoudiniPolyDataWriter : public vtkWriter
37 {
38 public:
39  static vtkHoudiniPolyDataWriter* New();
41  void PrintSelf(ostream& os, vtkIndent indent);
42 
44 
47  vtkGetStringMacro(FileName);
48  vtkSetStringMacro(FileName);
50 
51 protected:
54 
55  void WriteData();
56 
58 
59  char* FileName;
60 
61 private:
62  vtkHoudiniPolyDataWriter(const vtkHoudiniPolyDataWriter&) VTK_DELETE_FUNCTION;
63  void operator=(const vtkHoudiniPolyDataWriter&) VTK_DELETE_FUNCTION;
64 
65 };
66 
67 #endif
Store vtkAlgorithm input/output information.
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:85
abstract class to write data to file(s)
Definition: vtkWriter.h:42
write vtk polygonal data to Houdini file.
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkGetStringMacro(ExtensionsString)
Returns a string listing all available extensions.
virtual int FillInputPortInformation(int port, vtkInformation *info)
Fill the input port information objects for this algorithm.
static vtkAlgorithm * New()
virtual void WriteData()=0
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.