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

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

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