VTK  9.3.1
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
22 #ifndef vtkPointData_h
23 #define vtkPointData_h
24 
25 #include "vtkCommonDataModelModule.h" // For export macro
26 #include "vtkDataSetAttributes.h"
27 
28 VTK_ABI_NAMESPACE_BEGIN
29 class VTKCOMMONDATAMODEL_EXPORT vtkPointData : public vtkDataSetAttributes
30 {
31 public:
32  static vtkPointData* New();
33  static vtkPointData* ExtendedNew();
34 
36  void PrintSelf(ostream& os, vtkIndent indent) override;
37 
38 protected:
39  vtkPointData();
40  ~vtkPointData() override = default;
41 
42 private:
43  vtkPointData(const vtkPointData&) = delete;
44  void operator=(const vtkPointData&) = delete;
45 };
46 
47 VTK_ABI_NAMESPACE_END
48 #endif
represent and manipulate point attribute data
Definition: vtkPointData.h:29
static vtkDataSetAttributes * ExtendedNew()
a simple class to control print indentation
Definition: vtkIndent.h:28
represent and manipulate attribute data in a dataset
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkDataSetAttributes * New()
Construct object with copying turned on for all data.