This is a base class for factories that construct managers used by the Entresol class. More...
#include <entresolmanagerfactory.h>
Public Member Functions | |
EntresolManagerFactory () | |
Class constructor. | |
virtual | ~EntresolManagerFactory () |
Class destructor. | |
virtual EntresolManager * | CreateManager (const NameValuePairList &Params)=0 |
Creates a manager of the type represented by this factory. More... | |
virtual EntresolManager * | CreateManager (const XML::Node &XMLNode)=0 |
Creates a manager from XML. More... | |
virtual void | DestroyManager (EntresolManager *ToBeDestroyed)=0 |
Destroys a Manager created by this factory. More... | |
Public Member Functions inherited from Mezzanine::ManagerFactory | |
ManagerFactory () | |
Class constructor. | |
virtual | ~ManagerFactory () |
Class destructor. | |
virtual String | GetManagerImplName () const =0 |
Gets the name of the manager that is created by this factory. More... | |
virtual ManagerBase::ManagerType | GetManagerType () const =0 |
Gets the type of manager that is created by this factory. More... | |
This is a base class for factories that construct managers used by the Entresol class.
Definition at line 53 of file entresolmanagerfactory.h.
|
pure virtual |
Creates a manager of the type represented by this factory.
Params | A NameValuePairList containing the params to be applied during construction. |
Implemented in Mezzanine::Scripting::Lua::Lua51ScriptingEngineFactory, Mezzanine::UI::DefaultUIManagerFactory, Mezzanine::DefaultEventManagerFactory, Mezzanine::Graphics::DefaultGraphicsManagerFactory, Mezzanine::Physics::DefaultCollisionShapeManagerFactory, Mezzanine::Resource::DefaultResourceManagerFactory, Mezzanine::Input::DefaultInputManagerFactory, Mezzanine::Graphics::DefaultTextureManagerFactory, Mezzanine::Graphics::DefaultMeshManagerFactory, and Mezzanine::Network::DefaultNetworkManagerFactory.
|
pure virtual |
Creates a manager from XML.
XMLNode | The node of the xml document to construct from. |
Implemented in Mezzanine::Scripting::Lua::Lua51ScriptingEngineFactory, Mezzanine::UI::DefaultUIManagerFactory, Mezzanine::DefaultEventManagerFactory, Mezzanine::Graphics::DefaultGraphicsManagerFactory, Mezzanine::Physics::DefaultCollisionShapeManagerFactory, Mezzanine::Resource::DefaultResourceManagerFactory, Mezzanine::Input::DefaultInputManagerFactory, Mezzanine::Graphics::DefaultTextureManagerFactory, Mezzanine::Graphics::DefaultMeshManagerFactory, and Mezzanine::Network::DefaultNetworkManagerFactory.
|
pure virtual |
Destroys a Manager created by this factory.
ToBeDestroyed | A pointer to the manager to be destroyed. |
Implemented in Mezzanine::Scripting::Lua::Lua51ScriptingEngineFactory, Mezzanine::UI::DefaultUIManagerFactory, Mezzanine::DefaultEventManagerFactory, Mezzanine::Graphics::DefaultGraphicsManagerFactory, Mezzanine::Physics::DefaultCollisionShapeManagerFactory, Mezzanine::Resource::DefaultResourceManagerFactory, Mezzanine::Input::DefaultInputManagerFactory, Mezzanine::Graphics::DefaultTextureManagerFactory, Mezzanine::Graphics::DefaultMeshManagerFactory, and Mezzanine::Network::DefaultNetworkManagerFactory.