OGRE 2.1
Object-Oriented Graphics Rendering Engine
|
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 String & | getType () const =0 |
Returns the factory type. | |
Abstract factory class.
Does nothing by itself, but derived classes can add functionality.
|
inlinevirtual |
|
pure virtual |
Creates a new object.
name | Name of the object to create |
Implemented in Ogre::ArchiveFactory, and Ogre::v1::BillboardParticleRendererFactory.
|
pure virtual |
Destroys an object which was created by this factory.
ptr | Pointer to the object to destroy |
Implemented in Ogre::APKFileSystemArchiveFactory, Ogre::FileSystemArchiveFactory, Ogre::ZipArchiveFactory, and Ogre::v1::BillboardParticleRendererFactory.
|
pure virtual |
Returns the factory type.
Implemented in Ogre::v1::BillboardParticleRendererFactory, Ogre::APKFileSystemArchiveFactory, Ogre::APKZipArchiveFactory, Ogre::FileSystemArchiveFactory, Ogre::ZipArchiveFactory, and Ogre::EmbeddedZipArchiveFactory.