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