![]() |
Project
|
#include <Condition.h>
Can be used to group together a number of Configurables to overcome the limit of 100 Configurables per task. In order to do so you can do:
struct MyTask { struct : ConditionGroup { Condition<SomeConditionObject> someCondition{...}; } group; };
and access it with
group.aCut;
Definition at line 65 of file Condition.h.