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