Cantera
3.1.0a1
|
Factory class to create preconditioner objects. More...
#include <PreconditionerFactory.h>
Factory class to create preconditioner objects.
Definition at line 17 of file PreconditionerFactory.h.
Public Member Functions | |
void | deleteFactory () override |
Delete preconditioner factory. More... | |
Public Member Functions inherited from Factory< PreconditionerBase > | |
PreconditionerBase * | create (const string &name, Args... args) |
Create an object using the object construction function corresponding to "name" and the provided constructor arguments. More... | |
void | reg (const string &name, function< PreconditionerBase *(Args...)> f) |
Register a new object construction function. More... | |
void | addAlias (const string &original, const string &alias) |
Add an alias for an existing registered type. More... | |
string | canonicalize (const string &name) |
Get the canonical name registered for a type. More... | |
bool | exists (const string &name) const |
Returns true if name is registered with this factory. More... | |
Public Member Functions inherited from FactoryBase | |
virtual | ~FactoryBase () |
destructor More... | |
Static Public Member Functions | |
static PreconditionerFactory * | factory () |
Static Public Member Functions inherited from FactoryBase | |
static void | deleteFactories () |
static function that deletes all factories in the internal registry maintained in a static variable More... | |
Static Private Attributes | |
static PreconditionerFactory * | s_factory = 0 |
static std::mutex | precon_mutex |
Additional Inherited Members | |
Protected Member Functions inherited from Factory< PreconditionerBase > | |
void | addDeprecatedAlias (const string &original, const string &alias) |
Add a deprecated alias for an existing registered type. More... | |
Protected Member Functions inherited from FactoryBase | |
FactoryBase () | |
Constructor. More... | |
|
overridevirtual |
Delete preconditioner factory.
Implements FactoryBase.
Definition at line 21 of file PreconditionerFactory.cpp.