VTK  9.3.20240919
vtkFiltersCellGrid.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
3#ifndef vtkFiltersCellGrid_h
4#define vtkFiltersCellGrid_h
5
6#include "vtkFiltersCellGridModule.h" // For export macro.
7#include "vtkObject.h"
8
9VTK_ABI_NAMESPACE_BEGIN
10
13class VTKFILTERSCELLGRID_EXPORT vtkFiltersCellGrid : public vtkObject
14{
15public:
17 void PrintSelf(ostream& os, vtkIndent indent) override;
18
23
24protected:
26 void operator=(const vtkFiltersCellGrid&) = delete;
27};
28
29VTK_ABI_NAMESPACE_END
30
31#endif // vtkFiltersCellGrid_h
A registrar for cell types contained in this module.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkFiltersCellGrid(const vtkFiltersCellGrid &)=delete
void operator=(const vtkFiltersCellGrid &)=delete
static bool RegisterCellsAndResponders()
Call this method before running constructing or running algorithms on instances of vtkCellGrid so tha...
a simple class to control print indentation
Definition vtkIndent.h:108
abstract base class for most VTK objects
Definition vtkObject.h:162