VTK
vtkFacetWriter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3 Program: Visualization Toolkit
4 Module: vtkFacetWriter.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 =========================================================================*/
38 #ifndef vtkFacetWriter_h
39 #define vtkFacetWriter_h
40 
41 #include "vtkIOGeometryModule.h" // For export macro
42 #include "vtkPolyDataAlgorithm.h"
43 
44 class vtkInformation;
45 
47 {
48 public:
49  static vtkFacetWriter *New();
51  void PrintSelf(ostream& os, vtkIndent indent);
52 
54 
55  vtkSetStringMacro(FileName);
56  vtkGetStringMacro(FileName);
58 
60  void Write();
61 
62  // BTX
63  void WriteToStream(ostream* ost);
64  // ETX
65 
66 protected:
68  ~vtkFacetWriter();
69 
70  // This is called by the superclass.
71  // This is the method you should override.
72  virtual int RequestData(vtkInformation *request,
73  vtkInformationVector** inputVector,
74  vtkInformationVector* outputVector);
75 
76  virtual int FillInputPortInformation(int, vtkInformation *);
77 
78  // BTX
79  int WriteDataToStream(ostream* ost, vtkPolyData* data);
80  // ETX
81 
82  char *FileName;
83  ostream *OutputStream;
84 
85 private:
86  vtkFacetWriter(const vtkFacetWriter&); // Not implemented.
87  void operator=(const vtkFacetWriter&); // Not implemented.
88 };
89 
90 #endif
91 
ostream * OutputStream
virtual int FillInputPortInformation(int port, vtkInformation *info)
reads a dataset in Facet format
Store vtkAlgorithm input/output information.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:83
#define VTKIOGEOMETRY_EXPORT
static vtkPolyDataAlgorithm * New()
void PrintSelf(ostream &os, vtkIndent indent)
Superclass for algorithms that produce only polydata as output.
a simple class to control print indentation
Definition: vtkIndent.h:38
Store zero or more vtkInformation instances.