Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound 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 =========================================================================*/
00053 #ifndef __vtkCellDataToPointData_h
00054 #define __vtkCellDataToPointData_h
00055 
00056 #include "vtkDataSetToDataSetFilter.h"
00057 
00058 class VTK_GRAPHICS_EXPORT vtkCellDataToPointData : public vtkDataSetToDataSetFilter
00059 {
00060 public:
00061   static vtkCellDataToPointData *New();
00062   vtkTypeRevisionMacro(vtkCellDataToPointData,vtkDataSetToDataSetFilter);
00063   void PrintSelf(ostream& os, vtkIndent indent);
00064 
00066 
00069   vtkSetMacro(PassCellData,int);
00070   vtkGetMacro(PassCellData,int);
00071   vtkBooleanMacro(PassCellData,int);
00073 
00074 protected:
00075   vtkCellDataToPointData();
00076   ~vtkCellDataToPointData() {};
00077 
00078   void Execute();
00079 
00080   int PassCellData;
00081 private:
00082   vtkCellDataToPointData(const vtkCellDataToPointData&);  // Not implemented.
00083   void operator=(const vtkCellDataToPointData&);  // Not implemented.
00084 };
00085 
00086 #endif
00087 
00088