VTK
dox/Filters/General/vtkAppendPoints.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkAppendPoints.h
00005 
00006   Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00007   All rights reserved.
00008   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00009 
00010      This software is distributed WITHOUT ANY WARRANTY; without even
00011      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00012      PURPOSE.  See the above copyright notice for more information.
00013 
00014 =========================================================================*/
00027 #ifndef __vtkAppendPoints_h
00028 #define __vtkAppendPoints_h
00029 
00030 #include "vtkFiltersGeneralModule.h" // For export macro
00031 #include "vtkPolyDataAlgorithm.h"
00032 
00033 class VTKFILTERSGENERAL_EXPORT vtkAppendPoints : public vtkPolyDataAlgorithm
00034 {
00035 public:
00036   static vtkAppendPoints *New();
00037   vtkTypeMacro(vtkAppendPoints,vtkPolyDataAlgorithm);
00038   void PrintSelf(ostream& os, vtkIndent indent);
00039 
00041 
00045   vtkSetStringMacro(InputIdArrayName);
00046   vtkGetStringMacro(InputIdArrayName);
00048 
00049 protected:
00050   vtkAppendPoints();
00051   ~vtkAppendPoints();
00052 
00053   // Usual data generation method
00054   virtual int RequestData(vtkInformation *,
00055                           vtkInformationVector **, vtkInformationVector *);
00056   virtual int FillInputPortInformation(int, vtkInformation *);
00057 
00058   char* InputIdArrayName;
00059 
00060 private:
00061   vtkAppendPoints(const vtkAppendPoints&);  // Not implemented.
00062   void operator=(const vtkAppendPoints&);  // Not implemented.
00063 };
00064 
00065 #endif
00066 
00067