template<class type>
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 }
|