VTK  9.1.0
vtkCellData.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkCellData.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
135 #ifndef vtkCellData_h
136 #define vtkCellData_h
137 
138 #include "vtkCommonDataModelModule.h" // For export macro
139 #include "vtkDataSetAttributes.h"
140 
141 class VTKCOMMONDATAMODEL_EXPORT vtkCellData : public vtkDataSetAttributes
142 {
143 public:
144  static vtkCellData* New();
146 
148  void PrintSelf(ostream& os, vtkIndent indent) override;
149 
150 protected:
151  vtkCellData() = default; // make sure constructor and destructor are protected
152  ~vtkCellData() override = default;
153 
154 private:
155  vtkCellData(const vtkCellData&) = delete;
156  void operator=(const vtkCellData&) = delete;
157 };
158 
159 #endif
represent and manipulate cell attribute data
Definition: vtkCellData.h:142
vtkCellData()=default
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:113