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