123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /*=========================================================================
- 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
|