I am creating a QList of large objects: QList< MyLargeObject >
I first create the large object, and then I append it to my QList. I believe this is making a copy of the MyLargeObject. Is it possible to move (not copy) the object onto the Qlist? (Without creating MyLargeObject on the heap and using QList<MyLargeObject*>
4