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

Definition at line 100 of file qvaluelist.h.

00101     {
00102         typename std::list<type>::const_iterator it;
00103         for(it=std::list<type>::begin(); it!=std::list<type>::end(); ++it)
00104             if(*it==d) return it;
00105         return it;
00106     }


(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