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