VTK  9.5.20251105
vtkNonOverlappingAMR.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
15#ifndef vtkNonOverlappingAMR_h
16#define vtkNonOverlappingAMR_h
17
18#include "vtkCommonDataModelModule.h" // For export macro
19#include "vtkUniformGridAMR.h"
20
21VTK_ABI_NAMESPACE_BEGIN
22class VTKCOMMONDATAMODEL_EXPORT vtkNonOverlappingAMR : public vtkUniformGridAMR
23{
24public:
27 void PrintSelf(ostream& os, vtkIndent indent) override;
28
32 int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_NON_OVERLAPPING_AMR; }
33
38 {
39 // VTK_DEPRECATED_IN_9_6_0:
40 // We cannot use Superclass directly because this method is deprecated
41 // When removing deprecated code, please Remove this command and replace
42 // `vtkAMRDataObject` by `Superclass` in the line below.
44 }
46 {
47 // VTK_DEPRECATED_IN_9_6_0:
48 // We cannot use Superclass directly because this method is deprecated
49 // When removing deprecated code, please Remove this command and replace
50 // `vtkAMRDataObject` by `Superclass` in the line below.
52 }
53
54protected:
57
58private:
60 void operator=(const vtkNonOverlappingAMR&) = delete;
61};
62
63VTK_ABI_NAMESPACE_END
64#endif /* vtkNonOverlappingAMR_h */
static vtkAMRDataObject * GetData(vtkInformation *info)
Retrieve an instance of this class from an information object.
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
A concrete instance of vtkAMRDataObject to store uniform grids at different levels of resolution that...
~vtkNonOverlappingAMR() override
static vtkNonOverlappingAMR * SafeDownCast(vtkObjectBase *o)
int GetDataObjectType() VTK_FUTURE_CONST override
Returns object type (see vtkType.h for definitions).
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkNonOverlappingAMR * New()
static vtkNonOverlappingAMR * GetData(vtkInformationVector *v, int i=0)
static vtkNonOverlappingAMR * GetData(vtkInformation *info)
Retrieve an instance of this class from an information object.
Legacy, empty shell inheriting vtkAMRDataObject.
@ VTK_NON_OVERLAPPING_AMR
Definition vtkType.h:143