VTK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
vtkAttributeDataToFieldDataFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkAttributeDataToFieldDataFilter.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
41 #ifndef __vtkAttributeDataToFieldDataFilter_h
42 #define __vtkAttributeDataToFieldDataFilter_h
43 
44 #include "vtkFiltersCoreModule.h" // For export macro
45 #include "vtkDataSetAlgorithm.h"
46 
47 class VTKFILTERSCORE_EXPORT vtkAttributeDataToFieldDataFilter : public vtkDataSetAlgorithm
48 {
49 public:
50  void PrintSelf(ostream& os, vtkIndent indent);
51  vtkTypeMacro(vtkAttributeDataToFieldDataFilter,vtkDataSetAlgorithm);
52 
55 
57 
59  vtkSetMacro(PassAttributeData,int);
60  vtkGetMacro(PassAttributeData,int);
61  vtkBooleanMacro(PassAttributeData,int);
63 
64 protected:
67 
68  virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *); //generate output data
69 
71 private:
73  void operator=(const vtkAttributeDataToFieldDataFilter&); // Not implemented.
74 };
75 
76 #endif