FastLED 3.9.15
Loading...
Searching...
No Matches

◆ add() [2/2]

template<typename T, typename... Rest>
void fl::UIGroup::add ( T & control,
Rest &... rest )
inlineprivate

Definition at line 568 of file ui.h.

568 {
569 // Recursive case: add first control, then recurse with remaining
570 control.setGroup(name());
571 add(rest...);
572 }
fl::string name() const
Definition ui.h:545
void add(T &control)
Definition ui.h:562

References add(), and name().

+ Here is the call graph for this function: