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