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

dox/Graphics/vtkAttributeDataToFieldDataFilter.h

Go to the documentation of this file.
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkAttributeDataToFieldDataFilter.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 =========================================================================*/ 00045 #ifndef __vtkAttributeDataToFieldDataFilter_h 00046 #define __vtkAttributeDataToFieldDataFilter_h 00047 00048 #include "vtkDataSetToDataSetFilter.h" 00049 00050 class VTK_GRAPHICS_EXPORT vtkAttributeDataToFieldDataFilter : public vtkDataSetToDataSetFilter 00051 { 00052 public: 00053 void PrintSelf(ostream& os, vtkIndent indent); 00054 vtkTypeRevisionMacro(vtkAttributeDataToFieldDataFilter,vtkDataSetToDataSetFilter); 00055 00057 static vtkAttributeDataToFieldDataFilter *New(); 00058 00060 00062 vtkSetMacro(PassAttributeData,int); 00063 vtkGetMacro(PassAttributeData,int); 00064 vtkBooleanMacro(PassAttributeData,int); 00066 00067 protected: 00068 vtkAttributeDataToFieldDataFilter(); 00069 ~vtkAttributeDataToFieldDataFilter() {}; 00070 00071 void Execute(); //generate output data 00072 00073 int PassAttributeData; 00074 private: 00075 vtkAttributeDataToFieldDataFilter(const vtkAttributeDataToFieldDataFilter&); // Not implemented. 00076 void operator=(const vtkAttributeDataToFieldDataFilter&); // Not implemented. 00077 }; 00078 00079 #endif 00080 00081