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