1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
// SPDX-License-Identifier: BSD-3-Clause
// Instantiate superclass first to give the template a DLL interface.
#define VTK_AOS_DATA_ARRAY_TEMPLATE_INSTANTIATING
#include "vtkAOSDataArrayTemplate.txx"
VTK_AOS_DATA_ARRAY_TEMPLATE_INSTANTIATE(unsigned long);
#include "vtkUnsignedLongArray.h"
#include "vtkObjectFactory.h"
//------------------------------------------------------------------------------
VTK_ABI_NAMESPACE_BEGIN
vtkStandardNewMacro(vtkUnsignedLongArray);
vtkStandardExtendedNewMacro(vtkUnsignedLongArray);
//------------------------------------------------------------------------------
vtkUnsignedLongArray::vtkUnsignedLongArray() = default;
//------------------------------------------------------------------------------
vtkUnsignedLongArray::~vtkUnsignedLongArray() = default;
//------------------------------------------------------------------------------
void vtkUnsignedLongArray::PrintSelf(ostream& os, vtkIndent indent)
{
this->RealSuperclass::PrintSelf(os, indent);
}
VTK_ABI_NAMESPACE_END
|