aboutsummaryrefslogtreecommitdiff
path: root/lib/urlfilter/adblock/parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/urlfilter/adblock/parser.h')
-rw-r--r--lib/urlfilter/adblock/parser.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/urlfilter/adblock/parser.h b/lib/urlfilter/adblock/parser.h
new file mode 100644
index 0000000..c73a9cf
--- /dev/null
+++ b/lib/urlfilter/adblock/parser.h
@@ -0,0 +1,14 @@
+/*
+ * 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: https://neueland.iserlohn-fortress.net/gitea/aqua/smolbote
+ *
+ * SPDX-License-Identifier: GPL-3.0
+ */
+
+#include <QWebEngineUrlRequestInfo>
+#include <optional>
+#include <utility>
+
+std::optional<std::pair<QString, QString>> parseComment(QString &line);
+std::optional<std::pair<QWebEngineUrlRequestInfo::ResourceType, bool>> parseResourceOption(const QString &option);