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
32#ifndef vtkCellData_h
33#define vtkCellData_h
34
35#include "vtkCommonDataModelModule.h" // For export macro
37
38VTK_ABI_NAMESPACE_BEGIN
39class VTKCOMMONDATAMODEL_EXPORT vtkCellData : public vtkDataSetAttributes
40{
41public:
42 static vtkCellData* New();
44
46 void PrintSelf(ostream& os, vtkIndent indent) override;
47
48protected:
49 vtkCellData(); // make sure constructor and destructor are protected
50 ~vtkCellData() override = default;
51
52private:
53 vtkCellData(const vtkCellData&) = delete;
54 void operator=(const vtkCellData&) = delete;
55};
56
57VTK_ABI_NAMESPACE_END
58#endif
represent and manipulate cell attribute data
Definition vtkCellData.h:40
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:38