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