dox/Filtering/vtkDataSetSource.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00021
#ifndef __vtkDataSetSource_h
00022
#define __vtkDataSetSource_h
00023
00024
#include "vtkSource.h"
00025
00026
class vtkDataSet;
00027
00028 class VTK_FILTERING_EXPORT vtkDataSetSource :
public vtkSource
00029 {
00030
public:
00031 vtkTypeRevisionMacro(vtkDataSetSource,
vtkSource);
00032
void PrintSelf(ostream& os,
vtkIndent indent);
00033
00035
00036
vtkDataSet *
GetOutput();
00037
vtkDataSet *
GetOutput(
int idx);
00039
00040
void SetOutput(
vtkDataSet *);
00041
00042
protected:
00043 vtkDataSetSource();
00044 ~vtkDataSetSource() {};
00045
00046
private:
00047 vtkDataSetSource(
const vtkDataSetSource&);
00048
void operator=(
const vtkDataSetSource&);
00049 };
00050
00051
#endif
00052
00053