summaryrefslogtreecommitdiff
path: root/wpa_supplicant/wpa_gui-qt4/scanresultsitem.h
blob: 74887eefb59c6f9192dfbf02fffb0ff0c09f50f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * wpa_gui - ScanResultsItem class
 * Copyright (c) 2015, Adrian Nowicki <adinowicki@gmail.com>
 *
 * This software may be distributed under the terms of the BSD license.
 * See README for more details.
 */

#ifndef SCANRESULTSITEM_H
#define SCANRESULTSITEM_H

#include <QTreeWidgetItem>

class ScanResultsItem : public QTreeWidgetItem
{
public:
	ScanResultsItem(QTreeWidget *tree) : QTreeWidgetItem(tree) {}
	bool operator< (const QTreeWidgetItem &other) const;
};

#endif /* SCANRESULTSITEM_H */