Instantiates derived classes either statically or dynamically.
More...
#include <gfactory.h>
Definition at line 42 of file gfactory.h.
◆ GManager()
GManager::GManager |
( |
GLogger const * |
logger, |
|
|
std::string |
name |
|
) |
| |
|
inline |
- Parameters
-
log | pointer to the logger for plugins |
Definition at line 73 of file gfactory.h.
◆ clearDLMap()
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
-
name | name 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
-
name | name 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
-
name | name 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: