template<class type>
bool FX::QPtrVector< type >::extend ( uint  no  )  [inline]

Extends the list to no items if not that already.

Definition at line 113 of file qptrvector.h.

00114     {
00115         uint cs=(uint) std::vector<type *>::size();
00116         if(cs<no)
00117         {
00118             std::vector<type *>::resize(no);
00119             return true;
00120         }
00121         return false;
00122     }


(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