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