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

dox/Graphics/vtkHierarchicalBoxCellDataToPointData.h

Go to the documentation of this file.
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkHierarchicalBoxCellDataToPointData.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 =========================================================================*/ 00035 #ifndef __vtkHierarchicalBoxCellDataToPointData_h 00036 #define __vtkHierarchicalBoxCellDataToPointData_h 00037 00038 #include "vtkHierarchicalBoxToHierarchicalBoxFilter.h" 00039 00040 class vtkDataObject; 00041 00042 class VTK_GRAPHICS_EXPORT vtkHierarchicalBoxCellDataToPointData : public vtkHierarchicalBoxToHierarchicalBoxFilter 00043 { 00044 public: 00045 static vtkHierarchicalBoxCellDataToPointData *New(); 00046 00047 vtkTypeRevisionMacro(vtkHierarchicalBoxCellDataToPointData, 00048 vtkHierarchicalBoxToHierarchicalBoxFilter); 00049 void PrintSelf(ostream& os, vtkIndent indent); 00050 00052 00055 vtkSetMacro(PassCellData,int); 00056 vtkGetMacro(PassCellData,int); 00057 vtkBooleanMacro(PassCellData,int); 00059 00060 protected: 00061 vtkHierarchicalBoxCellDataToPointData(); 00062 ~vtkHierarchicalBoxCellDataToPointData(); 00063 00064 virtual void ExecuteData(vtkDataObject*); 00065 00066 int PassCellData; 00067 private: 00068 vtkHierarchicalBoxCellDataToPointData(const vtkHierarchicalBoxCellDataToPointData&); // Not implemented. 00069 void operator=(const vtkHierarchicalBoxCellDataToPointData&); // Not implemented. 00070 }; 00071 00072 00073 #endif 00074 00075 00076