aboutsummaryrefslogtreecommitdiff
path: root/src/filter/filter.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/filter/filter.h')
-rw-r--r--src/filter/filter.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/filter/filter.h b/src/filter/filter.h
deleted file mode 100644
index f152e7a..0000000
--- a/src/filter/filter.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * This file is part of smolbote. It's copyrighted by the contributors recorded
- * in the version control history of the file, available from its original
- * location: git://neueland.iserlohn-fortress.net/smolbote.git
- *
- * SPDX-License-Identifier: GPL-3.0
- */
-
-#ifndef FILTERRULE_H
-#define FILTERRULE_H
-
-#include <QStringMatcher>
-
-class QUrl;
-class FilterRule
-{
-public:
-
- FilterRule(const QString &line);
-
- // delete the copy constructor and assignment operator
- FilterRule(const FilterRule&) = delete;
- FilterRule& operator=(const FilterRule&) = delete;
-
- // move constructor
- FilterRule(FilterRule&& other) {
- matcher = other.matcher;
- }
-
- ~FilterRule();
-
- bool shouldBlock(const QUrl &requestUrl) const;
-
-private:
- void parse(const QString &line);
-
- // QStringMatcher: holds a pattern you want to repeatedly match against some strings
- QStringMatcher matcher;
-
-};
-
-#endif // FILTERRULE_H