FXString FX::QStringList::join ( const FXString sep  )  const [inline]

Joins together the members of the list separated by sep.

Definition at line 50 of file qstringlist.h.

00051     {
00052         bool first=true;
00053         FXString ret;
00054         for(const_iterator it=begin(); it!=end(); ++it)
00055         {
00056             if(!first) ret+=sep;
00057             ret+=*it;
00058             first=false;
00059         }
00060         return ret;
00061     }


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