The actual factory. C The derived class (the actual plugin) B The base class interface for the plugin. More...
#include <meta_object.h>
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 176 of file meta_object.h.
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 182 of file meta_object.h.
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 191 of file meta_object.h.