VTK  9.5.20250912
vtkAttributeDataToFieldDataFilter.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
30#ifndef vtkAttributeDataToFieldDataFilter_h
31#define vtkAttributeDataToFieldDataFilter_h
32
33#include "vtkDataSetAlgorithm.h"
34#include "vtkFiltersCoreModule.h" // For export macro
35#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
36
37VTK_ABI_NAMESPACE_BEGIN
39 : public vtkDataSetAlgorithm
40{
41public:
42 void PrintSelf(ostream& os, vtkIndent indent) override;
44
49
51
55 vtkSetMacro(PassAttributeData, vtkTypeBool);
56 vtkGetMacro(PassAttributeData, vtkTypeBool);
57 vtkBooleanMacro(PassAttributeData, vtkTypeBool);
59
60protected:
63
65 vtkInformationVector*) override; // generate output data
66
68
69private:
71 void operator=(const vtkAttributeDataToFieldDataFilter&) = delete;
72};
73
74VTK_ABI_NAMESPACE_END
75#endif
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when a request asks the algorithm to do its work.
static vtkAttributeDataToFieldDataFilter * New()
Construct this object.
~vtkAttributeDataToFieldDataFilter() override=default
Superclass for algorithms that produce output of the same type as input.
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
int vtkTypeBool
Definition vtkABI.h:64
#define VTK_MARSHALAUTO