// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen // SPDX-License-Identifier: BSD-3-Clause #include "vtkAffineUnsignedIntArray.h" #include "vtkObjectFactory.h" //------------------------------------------------------------------------------ VTK_ABI_NAMESPACE_BEGIN vtkStandardNewMacro(vtkAffineUnsignedIntArray); vtkStandardExtendedNewMacro(vtkAffineUnsignedIntArray); //------------------------------------------------------------------------------ vtkAffineUnsignedIntArray::vtkAffineUnsignedIntArray() = default; //------------------------------------------------------------------------------ vtkAffineUnsignedIntArray::~vtkAffineUnsignedIntArray() = default; //------------------------------------------------------------------------------ void vtkAffineUnsignedIntArray::ConstructBackend(unsigned int slope, unsigned int intercept) { this->RealSuperclass::ConstructBackend(slope, intercept); } //------------------------------------------------------------------------------ void vtkAffineUnsignedIntArray::PrintSelf(ostream& os, vtkIndent indent) { this->RealSuperclass::PrintSelf(os, indent); } VTK_ABI_NAMESPACE_END