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