VTK  9.3.0
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
23#ifndef vtkCellData_h
24#define vtkCellData_h
25
26#include "vtkCommonDataModelModule.h" // For export macro
28
29VTK_ABI_NAMESPACE_BEGIN
30class VTKCOMMONDATAMODEL_EXPORT vtkCellData : public vtkDataSetAttributes
31{
32public:
33 static vtkCellData* New();
35
37 void PrintSelf(ostream& os, vtkIndent indent) override;
38
39protected:
40 vtkCellData(); // make sure constructor and destructor are protected
41 ~vtkCellData() override = default;
42
43private:
44 vtkCellData(const vtkCellData&) = delete;
45 void operator=(const vtkCellData&) = delete;
46};
47
48VTK_ABI_NAMESPACE_END
49#endif
represent and manipulate cell attribute data
Definition vtkCellData.h:31
static vtkCellData * New()
static vtkCellData * ExtendedNew()
~vtkCellData() override=default
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
represent and manipulate attribute data in a dataset
a simple class to control print indentation
Definition vtkIndent.h:29