template<class type>
Inserts item d into the list at index i.
Definition at line 96 of file qptrvector.h. 00096 { FXEXCEPTION_STL1 { std::vector<type *>::insert(std::vector<type *>::begin()+i, const_cast<type *>(d)); } FXEXCEPTION_STL2; return true; }
|