00001 #ifndef _STRING_PARSER_H_ 00002 #define _STRING_PARSER_H_ 00003 00004 #include <qstringlist.h> 00005 00006 class StringParser 00007 { 00008 public: 00009 static QStringList split(const QChar& sep, const QString& str, 00010 bool allowEmptyEntries=FALSE); 00011 static QString join(const QChar& sep, const QStringList& list); 00012 }; 00013 00014 #endif /* _STRING_PARSER_H_ */
1.4.2