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 
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 =========================================================================*/
00040 #ifndef __vtkCellDataToPointData_h
00041 #define __vtkCellDataToPointData_h
00042 
00043 #include "vtkDataSetToDataSetFilter.h"
00044 
00045 class VTK_GRAPHICS_EXPORT vtkCellDataToPointData : public vtkDataSetToDataSetFilter
00046 {
00047 public:
00048   static vtkCellDataToPointData *New();
00049   vtkTypeRevisionMacro(vtkCellDataToPointData,vtkDataSetToDataSetFilter);
00050   void PrintSelf(ostream& os, vtkIndent indent);
00051 
00053 
00056   vtkSetMacro(PassCellData,int);
00057   vtkGetMacro(PassCellData,int);
00058   vtkBooleanMacro(PassCellData,int);
00060 
00061 protected:
00062   vtkCellDataToPointData();
00063   ~vtkCellDataToPointData() {};
00064 
00065   void Execute();
00066 
00067   int PassCellData;
00068 private:
00069   vtkCellDataToPointData(const vtkCellDataToPointData&);  // Not implemented.
00070   void operator=(const vtkCellDataToPointData&);  // Not implemented.
00071 };
00072 
00073 #endif
00074 
00075