Files
pokerth/src/chatcleaner/urlcheck.h
T
lotodore 02518c67b2 Reformatting code using Kernighan & Ritchie style, tabs, tab width=4.
Command line: astyle --style=kr --indent=force-tab=4 --lineend=linux -n -r <file names>
2011-02-11 20:02:08 +00:00

27 lines
378 B
C++

#ifndef URLCHECK_H
#define URLCHECK_H
#include <QtCore>
class UrlCheck: public QObject
{
Q_OBJECT
public:
UrlCheck();
void setUrlStrings(QStringList us) {
urlStrings = us;
}
void setUrlExceptionStrings(QStringList ues) {
urlExceptionStrings = ues;
}
bool run(QString);
private:
QStringList urlStrings;
QStringList urlExceptionStrings;
};
#endif // URLCHECK_H