The actual factory. C The derived class (the actual plugin) B The base class interface for the plugin. More...
#include <meta_object.hpp>

Public Member Functions | |
| B * | create () const |
| The factory interface to generate an object. The object has type C in reality, though a pointer of the base class type is returned. | |
| MetaObject (const std::string &class_name, const std::string &base_class_name) | |
| Constructor for the class. | |
The actual factory. C The derived class (the actual plugin) B The base class interface for the plugin.
Definition at line 181 of file meta_object.hpp.
| class_loader::class_loader_private::MetaObject< C, B >::MetaObject | ( | const std::string & | class_name, |
| const std::string & | base_class_name | ||
| ) | [inline] |
Constructor for the class.
Definition at line 187 of file meta_object.hpp.
| B* class_loader::class_loader_private::MetaObject< C, B >::create | ( | ) | const [inline, virtual] |
The factory interface to generate an object. The object has type C in reality, though a pointer of the base class type is returned.
Implements class_loader::class_loader_private::AbstractMetaObject< B >.
Definition at line 196 of file meta_object.hpp.