FactoryBase class

Base class that factory is derived from.

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

class LoomFactory
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_Relay r = FactoryInst.CreateDefault<Loom_Relay>();