I have already the list pointer of CDrawObject*
std::list elements;
How I can move some element to the end of list. I s
A std::list is a doubly-linked list, which means you do not have random access to element n. You have to can remove the element, and then use push_back.
std::list
n
push_back