template<class type>
Removes the last item without auto-deletion.
Definition at line 209 of file qptrvector.h. 00210 { 00211 if(isEmpty()) return false; 00212 typename std::vector<type *>::iterator it=--std::vector<type *>::end(); 00213 std::vector<type *>::pop_back(); 00214 return true; 00215 }
|