aboutsummaryrefslogtreecommitdiff
path: root/test/hostlist/hostlisttest.h
blob: 9a87e0d353096f4e696bfda35b8958876dea7660 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef HOSTLIST_TEST
#define HOSTLIST_TEST

#include <QObject>
#include "filtertree.h"

class HostlistTest : public QObject
{
    Q_OBJECT

private slots:
    void parseList();
    void checkRules();

private:
    FilterTree tree;
};

#endif