diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2017-05-25 20:59:43 +0200 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2017-05-25 20:59:43 +0200 |
commit | 1143429887f61d8b3c74a4c3a1fafca632eb4b87 (patch) | |
tree | 87e03b38241afb33c1e7dc70c299bfb824533429 /src/blocker/blockermanager.h | |
parent | Merged FilterRule into FilterNode (diff) | |
download | smolbote-1143429887f61d8b3c74a4c3a1fafca632eb4b87.tar.xz |
Filter code refactoring
Diffstat (limited to 'src/blocker/blockermanager.h')
-rw-r--r-- | src/blocker/blockermanager.h | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/src/blocker/blockermanager.h b/src/blocker/blockermanager.h deleted file mode 100644 index cfa2110..0000000 --- a/src/blocker/blockermanager.h +++ /dev/null @@ -1,46 +0,0 @@ -/******************************************************************************* - ** - ** smolbote: yet another qute browser - ** Copyright (C) 2017 Xian Nox - ** - ** This program is free software: you can redistribute it and/or modify - ** it under the terms of the GNU General Public License as published by - ** the Free Software Foundation, either version 3 of the License, or - ** (at your option) any later version. - ** - ** This program is distributed in the hope that it will be useful, - ** but WITHOUT ANY WARRANTY; without even the implied warranty of - ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - ** GNU General Public License for more details. - ** - ** You should have received a copy of the GNU General Public License - ** along with this program. If not, see <http://www.gnu.org/licenses/>. - ** - ******************************************************************************/ - -#ifndef URLINTERCEPTORDIALOG_H -#define URLINTERCEPTORDIALOG_H - -#include <QDialog> - -namespace Ui { -class UrlInterceptorDialog; -} - -class FilterCollection; -class BlockerManager : public QDialog -{ - Q_OBJECT - -public: - explicit BlockerManager(QWidget *parent = 0); - ~BlockerManager(); - - QVector<FilterCollection* > subscriptions() const; - -private: - Ui::UrlInterceptorDialog *ui; - QVector<FilterCollection *> m_subscriptions; -}; - -#endif // URLINTERCEPTORDIALOG_H |