summaryrefslogtreecommitdiffstats
path: root/DnsDisplay.h
blob: 6569fb073af216d83e0400a6051c6f53ff4551ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <QTextBrowser>

class MDNSQuery;

class DnsDisplay : public QTextBrowser
{
	Q_OBJECT
private:
	MDNSQuery *mdns;
public:
	DnsDisplay(QWidget *parent = 0);
private slots:
	void serverListChanged();
};