summaryrefslogtreecommitdiff
path: root/noncore/applets/keyhelper/keyhelperapplet/misc/StringParser.h
blob: 8c1dc58ce2cb2aa24dc45e23dda13628fe3b3e0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _STRING_PARSER_H_
#define _STRING_PARSER_H_

#include <qstringlist.h>

class StringParser
{
public:
	static QStringList split(const QChar& sep, const QString& str,
		bool allowEmptyEntries=FALSE);
	static QString join(const QChar& sep, const QStringList& list);
};

#endif /* _STRING_PARSER_H_ */