blob: 7e581974e9ff92f95c52636a1b1b7c2ce688234b (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | #ifndef ADBLOCKTEST_H
#define ADBLOCKTEST_H
#include <QObject>
class AdBlockTest : public QObject
{
    Q_OBJECT
private slots:
    void parseRule();
    //void parseList();
};
#endif // ADBLOCKTEST_H
 |