VTK
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 "vtkDataSetAlgorithm.h"
45 
47 {
48 public:
49  void PrintSelf(ostream& os, vtkIndent indent);
51 
54 
56 
58  vtkSetMacro(PassAttributeData,int);
59  vtkGetMacro(PassAttributeData,int);
60  vtkBooleanMacro(PassAttributeData,int);
62 
63 protected:
66 
67  virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *); //generate output data
68 
70 private:
72  void operator=(const vtkAttributeDataToFieldDataFilter&); // Not implemented.
73 };
74 
75 #endif