template<class type>
Definition at line 93 of file qvaluelist.h. 00094 { 00095 typename std::list<type>::iterator it; 00096 for(it=std::list<type>::begin(); it!=std::list<type>::end(); ++it) 00097 if(*it==d) return it; 00098 return it; 00099 }
|