VTK
vtkPointSetSource.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPointSetSource.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 =========================================================================*/
21 #ifndef __vtkPointSetSource_h
22 #define __vtkPointSetSource_h
23 
24 #include "vtkSource.h"
25 
26 class vtkPointSet;
27 
28 class VTK_FILTERING_EXPORT vtkPointSetSource : public vtkSource
29 {
30 public:
31  vtkTypeMacro(vtkPointSetSource,vtkSource);
32  void PrintSelf(ostream& os, vtkIndent indent);
33 
35 
36  vtkPointSet *GetOutput();
37  vtkPointSet *GetOutput(int idx);
38  void SetOutput(vtkPointSet *output);
40 
41 protected:
44 
45  virtual int FillOutputPortInformation(int, vtkInformation*);
46 private:
47  vtkPointSetSource(const vtkPointSetSource&); // Not implemented.
48  void operator=(const vtkPointSetSource&); // Not implemented.
49 };
50 
51 #endif
52 
53 
Store vtkAlgorithm input/output information.
#define VTK_FILTERING_EXPORT
abstract class for specifying dataset behavior
Definition: vtkPointSet.h:40
abstract class whose subclasses generate point data
a simple class to control print indentation
Definition: vtkIndent.h:37