OGRE 14.3
Object-Oriented Graphics Rendering Engine
Loading...
Searching...
No Matches
Ogre::FactoryObj< T > Class Template Referenceabstract

Abstract factory class. More...

#include <OgreFactoryObj.h>

+ Inheritance diagram for Ogre::FactoryObj< T >:

Public Member Functions

virtual ~FactoryObj ()
 
virtual TcreateInstance (const String &name)=0
 Creates a new object.
 
virtual void destroyInstance (T *ptr)
 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

◆ getType()

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

◆ 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::BillboardParticleRendererFactory.

◆ destroyInstance()

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

Destroys an object which was created by this factory.

Parameters
ptrPointer to the object to destroy

Reimplemented in Ogre::EmbeddedZipArchiveFactory.


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