VTK  9.4.20241108
vtkPointData.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
131#ifndef vtkPointData_h
132#define vtkPointData_h
133
134#include "vtkCommonDataModelModule.h" // For export macro
135#include "vtkDataSetAttributes.h"
136#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
137
138VTK_ABI_NAMESPACE_BEGIN
139class VTKCOMMONDATAMODEL_EXPORT VTK_MARSHALAUTO vtkPointData : public vtkDataSetAttributes
140{
141public:
142 static vtkPointData* New();
144
146 void PrintSelf(ostream& os, vtkIndent indent) override;
147
148protected:
150 ~vtkPointData() override = default;
151
152private:
153 vtkPointData(const vtkPointData&) = delete;
154 void operator=(const vtkPointData&) = delete;
155};
156
157VTK_ABI_NAMESPACE_END
158#endif
represent and manipulate attribute data in a dataset
a simple class to control print indentation
Definition vtkIndent.h:108
represent and manipulate point attribute data
static vtkPointData * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkPointData * ExtendedNew()
~vtkPointData() override=default
#define VTK_MARSHALAUTO