dox/IO/vtkUnstructuredGridWriter.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00024
#ifndef __vtkUnstructuredGridWriter_h
00025
#define __vtkUnstructuredGridWriter_h
00026
00027
#include "vtkDataWriter.h"
00028
class vtkUnstructuredGrid;
00029
00030 class VTK_IO_EXPORT vtkUnstructuredGridWriter :
public vtkDataWriter
00031 {
00032
public:
00033
static vtkUnstructuredGridWriter *
New();
00034 vtkTypeRevisionMacro(vtkUnstructuredGridWriter,
vtkDataWriter);
00035
void PrintSelf(ostream& os,
vtkIndent indent);
00036
00038
00039
void SetInput(
vtkUnstructuredGrid *input);
00040
vtkUnstructuredGrid *
GetInput();
00042
00043
protected:
00044 vtkUnstructuredGridWriter() {};
00045 ~vtkUnstructuredGridWriter() {};
00046
00047
void WriteData();
00048
00049
private:
00050 vtkUnstructuredGridWriter(
const vtkUnstructuredGridWriter&);
00051
void operator=(
const vtkUnstructuredGridWriter&);
00052 };
00053
00054
#endif
00055
00056