FactoryBase class
Base class that factory is derived from.
Contents
- Reference
Purpose is to allow LoomManger to have a pointer to a LoomFactory, which it cannot do directly because different parameter selections result in different factory classes
Derived classes
-
template<Enable::class LoomFactory
Internet INTERNET = Enable:: Internet:: All, Enable:: Sensors SENSORS = Enable:: Sensors:: Enabled, Enable:: Radios RADIOS = Enable:: Radios:: Enabled, Enable:: Actuators ACTUATORS = Enable:: Actuators:: Enabled, Enable:: Max MAX = Enable:: Max:: Disabled> - Factory is used by LoomManager when parsing Json to match module names to their associated constructors, and calling with parameters from the Json.
Public static functions
-
template<class T>static auto CreateDefault() -> T*
- Creates a LoomModule with its default parameters.
Function documentation
template<class T>
static T* FactoryBase:: CreateDefault()
Creates a LoomModule with its default parameters.
Returns | The created LoomModule |
---|
Usage example: Loom_