Loom
|
Factory is used by LoomManager when parsing Json to match module names to their associated constructors, and calling with parameters from the Json. More...
#include <Module_Factory.h>
Public Member Functions | |
LoomFactory ()=default | |
Constructor. More... | |
~LoomFactory ()=default | |
Destructor. More... | |
void | print_table () const |
Print the contents of the lookup table. More... | |
LoomModule * | Create (LoomManager *manager, JsonVariant module) const |
Create LoomManager* manager, a module based on a subset of a Json configuration. More... | |
Additional Inherited Members | |
![]() | |
template<class T > | |
static T * | CreateDefault () |
Creates a LoomModule with its default parameters. More... | |
Factory is used by LoomManager when parsing Json to match module names to their associated constructors, and calling with parameters from the Json.
The template parameters are used to select whether certain blocks of modules are included in the lookup table. This is determined at compile time to not include unnecessary module classes and supporting code, thus reducing code size
|
default |
Constructor.
|
default |
Destructor.
|
inlinevirtual |
Create LoomManager* manager, a module based on a subset of a Json configuration.
Needs name and parameters to the constructor as an array (or the word 'default') if that module has default values for all parameters
[in] | module | Subset of a Json configuration, used to identify module to create and with what parameters |
Implements FactoryBase.
|
inlinevirtual |
Print the contents of the lookup table.
Implements FactoryBase.