vtkHierarchicalBoxCellDataToPointData.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00042 #ifndef __vtkHierarchicalBoxCellDataToPointData_h
00043 #define __vtkHierarchicalBoxCellDataToPointData_h
00044
00045 #include "vtkHierarchicalBoxToHierarchicalBoxFilter.h"
00046
00047 class vtkDataObject;
00048
00049 class VTK_GRAPHICS_EXPORT vtkHierarchicalBoxCellDataToPointData : public vtkHierarchicalBoxToHierarchicalBoxFilter
00050 {
00051 public:
00052 static vtkHierarchicalBoxCellDataToPointData *New();
00053
00054 vtkTypeRevisionMacro(vtkHierarchicalBoxCellDataToPointData,
00055 vtkHierarchicalBoxToHierarchicalBoxFilter);
00056 void PrintSelf(ostream& os, vtkIndent indent);
00057
00059
00062 vtkSetMacro(PassCellData,int);
00063 vtkGetMacro(PassCellData,int);
00064 vtkBooleanMacro(PassCellData,int);
00066
00067 protected:
00068 vtkHierarchicalBoxCellDataToPointData();
00069 ~vtkHierarchicalBoxCellDataToPointData();
00070
00071 virtual void ExecuteData(vtkDataObject*);
00072
00073 int PassCellData;
00074 private:
00075 vtkHierarchicalBoxCellDataToPointData(const vtkHierarchicalBoxCellDataToPointData&);
00076 void operator=(const vtkHierarchicalBoxCellDataToPointData&);
00077 };
00078
00079
00080 #endif
00081
00082
00083