Graphite Version 3
An experimental 3D geometry processing program
|
Creates instances of a specific class. More...
#include <OGF/gom/services/factory.h>
Public Member Functions | |
Factory () | |
Factory constructor. | |
~Factory () override | |
Factory destructor. | |
virtual Object * | create (const ArgList &args)=0 |
Creates an object based of user-supplied parameters. | |
![]() | |
void | ref () const |
Increments the reference count. | |
void | unref () const |
Decrements the reference count. | |
bool | is_shared () const |
Check if the object is shared. | |
int | nb_refs () const |
Gets the number of references that point to this object. | |
Additional Inherited Members | |
![]() | |
static void | ref (const Counted *counted) |
Increments the reference count. | |
static void | unref (const Counted *counted) |
Decrements the reference count. | |
![]() | |
Counted () | |
Creates a reference counted object. | |
virtual | ~Counted () |
Destroys a reference counted object. | |
Creates instances of a specific class.
Converts the argument, stored in a generic ArgList, and passes them to the constructor. Factories are generated by the GomCodeGenerator.
Creates an object based of user-supplied parameters.
[in] | args | the set of parameters supplied by client code |
a | pointer to the created object if successful |
nil | if the argument list does not match any constructor of the object |
Implemented in OGF::DynamicFactoryMetaClass, and OGF::FactoryMetaClass.