aboutsummaryrefslogtreecommitdiff
path: root/src/webengine/blockerrule.cpp
blob: a4a098207f80b7424f6ad8b351e1d1cd0aa29c37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "blockerrule.h"

BlockerRule::BlockerRule(QString rule, QObject *parent) :
    QObject(parent)
{
    ruleExpression.setPattern(rule);
}

bool BlockerRule::match(const QUrl &url)
{
    return ruleExpression.match(url.toString()).hasMatch();
}