OGRE  2.2.4
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.

Referenced by Ogre::FactoryObj< ParticleSystemRenderer >::~FactoryObj().

◆ 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::FileSystemArchiveFactory, Ogre::ZipArchiveFactory, and Ogre::APKFileSystemArchiveFactory.

Referenced by Ogre::FactoryObj< ParticleSystemRenderer >::~FactoryObj().

◆ getType()


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