How about a Component::getChildComponents() method?

Being able to grab an array of child components would enable us to do things like this:

for(Component* child : getChildComponents())
{
child->setName(“Happy days!”);
}

What say ye?

A Component::getAllChildren() method? :wink:

1 Like

Ha, great minds and all that.