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

vtkHierarchicalBoxCellDataToPointData.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkHierarchicalBoxCellDataToPointData.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 =========================================================================*/
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&);  // Not implemented.
00076   void operator=(const vtkHierarchicalBoxCellDataToPointData&);  // Not implemented.
00077 };
00078 
00079 
00080 #endif
00081 
00082 
00083