Command line: astyle --style=kr --indent=force-tab=4 --lineend=linux -n -r <file names>
27 lines
378 B
C++
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
|