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