VTK  9.4.20251007
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
22
23#ifndef vtkCellData_h
24#define vtkCellData_h
25
26#include "vtkCommonDataModelModule.h" // For export macro
28#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
29
30VTK_ABI_NAMESPACE_BEGIN
31class VTKCOMMONDATAMODEL_EXPORT VTK_MARSHALAUTO vtkCellData : public vtkDataSetAttributes
32{
33public:
34 static vtkCellData* New();
36
38 void PrintSelf(ostream& os, vtkIndent indent) override;
39
40protected:
41 vtkCellData(); // make sure constructor and destructor are protected
42 ~vtkCellData() override = default;
43
44private:
45 vtkCellData(const vtkCellData&) = delete;
46 void operator=(const vtkCellData&) = delete;
47};
48
49VTK_ABI_NAMESPACE_END
50#endif
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.
a simple class to control print indentation
Definition vtkIndent.h:29
#define VTK_MARSHALAUTO