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
27 #include "vtkDataSetAttributes.h"
28 
29 VTK_ABI_NAMESPACE_BEGIN
30 class VTKCOMMONDATAMODEL_EXPORT vtkCellData : public vtkDataSetAttributes
31 {
32 public:
33  static vtkCellData* New();
35 
37  void PrintSelf(ostream& os, vtkIndent indent) override;
38 
39 protected:
40  vtkCellData(); // make sure constructor and destructor are protected
41  ~vtkCellData() override = default;
42 
43 private:
44  vtkCellData(const vtkCellData&) = delete;
45  void operator=(const vtkCellData&) = delete;
46 };
47 
48 VTK_ABI_NAMESPACE_END
49 #endif
represent and manipulate cell attribute data
Definition: vtkCellData.h:31
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:29