VTK  9.3.20240907
vtkDeRhamCell.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
19#ifndef vtkDeRhamCell_h
20#define vtkDeRhamCell_h
21#include "vtkDGCell.h"
22
23VTK_ABI_NAMESPACE_BEGIN
24
25class VTKFILTERSCELLGRID_EXPORT vtkDeRhamCell : public vtkDGCell
26{
27public:
28 vtkTypeMacro(vtkDeRhamCell, vtkDGCell);
30 void PrintSelf(ostream& os, vtkIndent indent) override;
31
32protected:
33 vtkDeRhamCell() = default;
34 ~vtkDeRhamCell() override = default;
35
36private:
37 vtkDeRhamCell(const vtkDeRhamCell&) = delete;
38 void operator=(const vtkDeRhamCell&) = delete;
39};
40
41VTK_ABI_NAMESPACE_END
42#endif
Base class for a discontinuous Galerkin cells of all shapes.
Definition vtkDGCell.h:44
Base class for cells that form 2-d or 3-d DeRham complexes.
vtkDeRhamCell()=default
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkDeRhamCell() override=default
vtkInheritanceHierarchyOverrideMacro(vtkDeRhamCell)
a simple class to control print indentation
Definition vtkIndent.h:108