VTK  9.3.20231128
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 
138 VTK_ABI_NAMESPACE_BEGIN
139 class VTKCOMMONDATAMODEL_EXPORT vtkCellData : public vtkDataSetAttributes
140 {
141 public:
142  static vtkCellData* New();
144 
146  void PrintSelf(ostream& os, vtkIndent indent) override;
147 
148 protected:
149  vtkCellData(); // make sure constructor and destructor are protected
150  ~vtkCellData() override = default;
151 
152 private:
153  vtkCellData(const vtkCellData&) = delete;
154  void operator=(const vtkCellData&) = delete;
155 };
156 
157 VTK_ABI_NAMESPACE_END
158 #endif
represent and manipulate cell attribute data
Definition: vtkCellData.h:140
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