You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.6 KiB
C

/*=========================================================================
Program: Visualization Toolkit
Module: @_vtk_object_factory_library_name@ObjectFactory.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#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"
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;
};
#endif // @_vtk_object_factory_library_name@ObjectFactory_h