VTK
dox/Infovis/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 "vtkPolyDataAlgorithm.h"
00031 
00032 class VTK_INFOVIS_EXPORT vtkAppendPoints : public vtkPolyDataAlgorithm
00033 {
00034 public:
00035   static vtkAppendPoints *New();
00036   vtkTypeMacro(vtkAppendPoints,vtkPolyDataAlgorithm);
00037   void PrintSelf(ostream& os, vtkIndent indent);
00038 
00040 
00044   vtkSetStringMacro(InputIdArrayName);
00045   vtkGetStringMacro(InputIdArrayName);
00047 
00048 protected:
00049   vtkAppendPoints();
00050   ~vtkAppendPoints();
00051 
00052   // Usual data generation method
00053   virtual int RequestData(vtkInformation *, 
00054                           vtkInformationVector **, vtkInformationVector *);
00055   virtual int FillInputPortInformation(int, vtkInformation *);
00056 
00057   char* InputIdArrayName;
00058 
00059 private:
00060   vtkAppendPoints(const vtkAppendPoints&);  // Not implemented.
00061   void operator=(const vtkAppendPoints&);  // Not implemented.
00062 };
00063 
00064 #endif
00065 
00066