template<class type, class allocator>
Definition at line 576 of file qptrlist.h. Referenced by FX::QQuickList< type, allocator >::QQuickList(). 00577 : 00578 QQuickList &operator=(QQuickList &o); 00579 public: 00580 QQuickList &&operator=(QQuickList &&o) 00581 #endif 00582 { 00583 clear(); 00584 Base::splice(Base::begin(), o, o.begin(), o.end()); 00585 return *this; 00586 }
|