template<class type>
Removes the last item.
Definition at line 163 of file qptrvector.h. 00164 { 00165 if(isEmpty()) return false; 00166 typename std::vector<type *>::iterator it=--std::vector<type *>::end(); 00167 deleteItem(*it); 00168 std::vector<type *>::pop_back(); 00169 return true; 00170 }
|