template<class type>
std::list<type>::iterator FX::QValueList< type >::find ( const type &  d  )  [inline]

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     }


(C) 2002-2009 Niall Douglas. Some parts (C) to assorted authors.
Generated on Fri Nov 20 18:37:46 2009 for TnFOX by doxygen v1.4.7