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

Definition at line 77 of file qvaluelist.h.

00078     {
00079         FXEXCEPTION_STL1 {
00080             for(typename std::list<type>::const_iterator it=l.begin(); it!=l.end(); ++it)
00081             {
00082                 std::list<type>::push_back(*it);
00083             }
00084         } FXEXCEPTION_STL2;
00085         return --std::list<type>::end();
00086     }


(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