blob: 59dce0af8c082e3b273252fad0da8603c5b0da78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#ifndef URLINTERCEPTORDIALOG_H
#define URLINTERCEPTORDIALOG_H
#include <QDialog>
#include "webengine/blockersubscription.h"
namespace Ui {
class UrlInterceptorDialog;
}
class BlockerDialog : public QDialog
{
Q_OBJECT
public:
explicit BlockerDialog(QWidget *parent = 0);
~BlockerDialog();
BlockerSubscription *subscription();
private:
Ui::UrlInterceptorDialog *ui;
BlockerSubscription *m_subscription;
};
#endif // URLINTERCEPTORDIALOG_H
|