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