|
template<class ConcreteType > |
static void | register_creator (const std::string &name) |
| Registers a creator.
|
|
static CreatorType | find_creator (const std::string &name) |
| Finds a creator by name.
|
|
static void | list_creators (std::vector< std::string > &names) |
| Lists all registered creators.
|
|
static bool | has_creator (const std::string &name) |
| Tests whether the factory has a creator.
|
|
static void | ref (const Counted *counted) |
| Increments the reference count.
|
|
static void | unref (const Counted *counted) |
| Decrements the reference count.
|
|
template<class FactoryCreator>
class GEO::Factory< FactoryCreator >
Factory of typed objects.
A Factory is a mechanism to create objects without knowing their types in advance. The object types that a Factory can instantiate belong to a type hierarchy whose base type is defined by Type
. The Factory uses a registry of creator functions bound to user-defined names. The user-defined names can be used to:
- register a creator function (see register_creator())
- create an object, using the creator function bound to the name (see create_object())
- Template Parameters
-
FactoryCreator | the type of the creator used to create objects in this Factory. FactoryCreator must define: |
- the type CreatorType type of the creation function
- a static template function create(...) used to actually create objects of a given concrete type
Definition at line 137 of file factory.h.