Hello,
I am wondering how I would access an element on a List?
Is it something to do with the iterator?
list<Element*> _children;
_children.push_back(child);
_children.push_back(child);
For example, how would I access the "children" of this list?
Thank you.