template<class type>
Definition at line 126 of file qvaluelist.h. 00127 { 00128 typename std::list<type>::size_type count=0; 00129 for(typename std::list<type>::const_iterator it=std::list<type>::begin(); it!=std::list<type>::end(); ++it) 00130 if(*it==d) count++; 00131 return count; 00132 }
|