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