Main Page | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

Graphics/vtkCellDataToPointData.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkCellDataToPointData.h,v $
00005   Language:  C++
00006 
00007   Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen 
00008   All rights reserved.
00009   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00010 
00011      This software is distributed WITHOUT ANY WARRANTY; without even 
00012      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00013      PURPOSE.  See the above copyright notice for more information.
00014 
00015 =========================================================================*/
00054 #ifndef __vtkCellDataToPointData_h
00055 #define __vtkCellDataToPointData_h
00056 
00057 #include "vtkDataSetToDataSetFilter.h"
00058 
00059 class VTK_GRAPHICS_EXPORT vtkCellDataToPointData : public vtkDataSetToDataSetFilter
00060 {
00061 public:
00062   static vtkCellDataToPointData *New();
00063   vtkTypeRevisionMacro(vtkCellDataToPointData,vtkDataSetToDataSetFilter);
00064   void PrintSelf(ostream& os, vtkIndent indent);
00065 
00067 
00070   vtkSetMacro(PassCellData,int);
00071   vtkGetMacro(PassCellData,int);
00072   vtkBooleanMacro(PassCellData,int);
00074 
00075 protected:
00076   vtkCellDataToPointData();
00077   ~vtkCellDataToPointData() {};
00078 
00079   void Execute();
00080 
00081   int PassCellData;
00082 private:
00083   vtkCellDataToPointData(const vtkCellDataToPointData&);  // Not implemented.
00084   void operator=(const vtkCellDataToPointData&);  // Not implemented.
00085 };
00086 
00087 #endif
00088 
00089