gfactory
GManager Class Reference

Instantiates derived classes either statically or dynamically. More...

#include <gfactory.h>

Collaboration diagram for GManager:
Collaboration graph

Public Member Functions

 GManager (GLogger const *logger, std::string name)
 
template<class Derived >
void RegisterObjectFactory (std::string name)
 
template<class Base >
Base * CreateObject (std::string name) const
 
template<class T >
T * LoadAndRegisterObjectFromLibrary (std::string name)
 
void clearDLMap ()
 

Detailed Description

Definition at line 42 of file gfactory.h.

Constructor & Destructor Documentation

◆ GManager()

GManager::GManager ( GLogger const *  logger,
std::string  name 
)
inline
Parameters
logpointer to the logger for plugins

Definition at line 73 of file gfactory.h.

Member Function Documentation

◆ clearDLMap()

GManager::clearDLMap ( )
inline

Delete the various dynamic libraries handle This should be done at the end of the program

Definition at line 158 of file gfactory.h.

◆ CreateObject()

template<class Base >
GManager::CreateObject ( std::string  name) const
inline
Parameters
namename under which the factory is registered

After registration we can create the object using CreateObject.
Notice that Base here is the client base class.
c++ polymorphism is used to called the client methods derived from the base pure virtual methods.

Definition at line 103 of file gfactory.h.

◆ LoadAndRegisterObjectFromLibrary()

template<class T >
GManager::LoadAndRegisterObjectFromLibrary ( std::string  name)
inline
Parameters
namename under which the factory is registered

Instantiate client derived class.
Notice the base class must have the static method instantiate

Definition at line 124 of file gfactory.h.

◆ RegisterObjectFactory()

template<class Derived >
void GManager::RegisterObjectFactory ( std::string  name)
inline
Parameters
namename under which the factory is registered

Before instantiating the wanted class we need to register it (as Derived) in the manager first using RegisterObjectFactory.
Derived is the derived class, i.e. "Triangle" : "Shape".
The client knows about the derived class (through header)

Definition at line 87 of file gfactory.h.


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