GrabBag/SDK/pcl-1.14.0/3rdParty/VTK/lib/cmake/vtk-9.3/vtkObjectFactory.h.in

35 lines
1.2 KiB
C

// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
// SPDX-License-Identifier: BSD-3-Clause
#ifndef @_vtk_object_factory_library_name@ObjectFactory_h
#define @_vtk_object_factory_library_name@ObjectFactory_h
#include "@_vtk_object_factory_library_name@Module.h" // For export macro
#include "vtkObjectFactory.h"
VTK_ABI_NAMESPACE_BEGIN
class @_vtk_object_factory_configure_EXPORT_MACRO@ @_vtk_object_factory_library_name@ObjectFactory : public vtkObjectFactory
{
public:
static @_vtk_object_factory_library_name@ObjectFactory * New();
vtkTypeMacro(@_vtk_object_factory_library_name@ObjectFactory, vtkObjectFactory);
const char * GetDescription() override { return "@_vtk_object_factory_library_name@ factory overrides."; }
const char * GetVTKSourceVersion() override;
void PrintSelf(ostream &os, vtkIndent indent) override;
protected:
@_vtk_object_factory_library_name@ObjectFactory();
private:
@_vtk_object_factory_library_name@ObjectFactory(const @_vtk_object_factory_library_name@ObjectFactory&) = delete;
void operator=(const @_vtk_object_factory_library_name@ObjectFactory&) = delete;
};
VTK_ABI_NAMESPACE_END
#endif // @_vtk_object_factory_library_name@ObjectFactory_h