// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen // SPDX-License-Identifier: BSD-3-Clause // VTK_DEPRECATED_IN_9_5_0() #define VTK_DEPRECATION_LEVEL 0 #include "vtkHierarchicalBoxDataSet.h" #include "vtkInformation.h" #include "vtkInformationVector.h" #include "vtkObjectFactory.h" VTK_ABI_NAMESPACE_BEGIN vtkStandardNewMacro(vtkHierarchicalBoxDataSet); //------------------------------------------------------------------------------ vtkHierarchicalBoxDataSet::vtkHierarchicalBoxDataSet() = default; //------------------------------------------------------------------------------ vtkHierarchicalBoxDataSet::~vtkHierarchicalBoxDataSet() = default; //------------------------------------------------------------------------------ void vtkHierarchicalBoxDataSet::PrintSelf(ostream& os, vtkIndent indent) { this->Superclass::PrintSelf(os, indent); } //------------------------------------------------------------------------------ vtkHierarchicalBoxDataSet* vtkHierarchicalBoxDataSet::GetData(vtkInformation* info) { return info ? vtkHierarchicalBoxDataSet::SafeDownCast(info->Get(DATA_OBJECT())) : nullptr; } //------------------------------------------------------------------------------ vtkHierarchicalBoxDataSet* vtkHierarchicalBoxDataSet::GetData(vtkInformationVector* v, int i) { return vtkHierarchicalBoxDataSet::GetData(v->GetInformationObject(i)); } VTK_ABI_NAMESPACE_END