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