![]() |
Project
|
#include <Configurable.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 MyGroup : ConfigurableGroup { Configurable<int> aCut{...}; Configurable<float> bCut{...}; } group; };
and access it with
group.aCut;
Definition at line 142 of file Configurable.h.