template<class type, class allocator>
Destructively copies a list very quickly.
Definition at line 563 of file qptrlist.h. References FX::QQuickList< type, allocator >::operator=(), and FX::QQuickList< type, allocator >::QQuickList(). 00563 { 00564 #endif 00565 #else 00566 private: 00567 QQuickList(const QQuickList &); // disable copy constructor 00568 public: 00569 QQuickList(QQuickList &&o) : QPtrList<type, allocator>(true) 00570 { 00571 #endif 00572 Base::splice(Base::begin(), o, o.begin(), o.end()); 00573 } 00574 #ifndef HAVE_CPP0XRVALUEREFS
|