OGRE 2.1
Object-Oriented Graphics Rendering Engine
Loading...
Searching...
No Matches
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.
 
virtual void destroyInstance (T *ptr)=0
 Destroys an object which was created by this factory.
 
virtual const StringgetType () const =0
 Returns the factory type.
 

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::ArchiveFactory, and Ogre::v1::BillboardParticleRendererFactory.

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

◆ getType()


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