OGRE-Next  2.3
Object-Oriented Graphics Rendering Engine
Ogre::FactoryObj< T > Class Template Referenceabstract

Abstract factory class. More...

#include <OgreFactoryObj.h>

Public Member Functions

virtual ~FactoryObj ()
 
virtual T * createInstance (const String &name)=0
 Creates a new object. More...
 
virtual void destroyInstance (T *ptr)=0
 Destroys an object which was created by this factory. More...
 
virtual const StringgetType () const =0
 Returns the factory type. More...
 

Detailed Description

template<typename T>
class Ogre::FactoryObj< T >

Abstract factory class.

Does nothing by itself, but derived classes can add functionality.

Constructor & Destructor Documentation

◆ ~FactoryObj()

template<typename T >
virtual Ogre::FactoryObj< T >::~FactoryObj ( )
inlinevirtual

Member Function Documentation

◆ createInstance()

template<typename T >
virtual T* Ogre::FactoryObj< T >::createInstance ( const String name)
pure virtual

Creates a new object.

Parameters
nameName of the object to create
Returns
An object created by the factory. The type of the object depends on the factory.

Implemented in Ogre::v1::BillboardParticleRendererFactory, and Ogre::ArchiveFactory.

◆ destroyInstance()

template<typename T >
virtual void Ogre::FactoryObj< T >::destroyInstance ( T *  ptr)
pure virtual

Destroys an object which was created by this factory.

Parameters
ptrPointer to the object to destroy

Implemented in Ogre::v1::BillboardParticleRendererFactory, Ogre::ZipArchiveFactory, Ogre::FileSystemArchiveFactory, and Ogre::APKFileSystemArchiveFactory.

◆ getType()

template<typename T >
virtual const String& Ogre::FactoryObj< T >::getType ( ) const
pure virtual

The documentation for this class was generated from the following file: