aboutsummaryrefslogtreecommitdiff
path: root/src/webengine/adblockrule.h
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2017-01-24 16:09:07 +0100
committerAqua-sama <aqua@iserlohn-fortress.net>2017-01-24 16:09:07 +0100
commit0250559bcf5764fb8cf3a8ccc4e330b8ed855f96 (patch)
tree2283350e44f78e83a8c0257b66c184939cd95a98 /src/webengine/adblockrule.h
parentMade Profile menu a regular menu (diff)
downloadsmolbote-0250559bcf5764fb8cf3a8ccc4e330b8ed855f96.tar.xz
Blocker UI
Diffstat (limited to 'src/webengine/adblockrule.h')
-rw-r--r--src/webengine/adblockrule.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/webengine/adblockrule.h b/src/webengine/adblockrule.h
deleted file mode 100644
index 8c68de7..0000000
--- a/src/webengine/adblockrule.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef ADBLOCKRULE_H
-#define ADBLOCKRULE_H
-
-#include <QObject>
-#include <QUrl>
-#include <QRegularExpression>
-
-class AdBlockRule : public QObject
-{
- Q_OBJECT
-public:
- explicit AdBlockRule(QString rule, QObject *parent = 0);
-
- bool match(const QUrl &url);
-
-signals:
-
-public slots:
-
-private:
- QRegularExpression ruleExpression;
-};
-
-#endif // ADBLOCKRULE_H