template<class type>
bool FX::QPtrVector< type >::takeLast (  )  [inline]

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     }


(C) 2002-2009 Niall Douglas. Some parts (C) to assorted authors.
Generated on Fri Nov 20 18:37:43 2009 for TnFOX by doxygen v1.4.7