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