Updated through tag hostap_2_5 from git://w1.fi/hostap.git
[mech_eap.git] / libeap / wpa_supplicant / wpa_gui-qt4 / scanresultsitem.h
1 /*
2  * wpa_gui - ScanResultsItem class
3  * Copyright (c) 2015, Adrian Nowicki <adinowicki@gmail.com>
4  *
5  * This software may be distributed under the terms of the BSD license.
6  * See README for more details.
7  */
8
9 #ifndef SCANRESULTSITEM_H
10 #define SCANRESULTSITEM_H
11
12 #include <QTreeWidgetItem>
13
14 class ScanResultsItem : public QTreeWidgetItem
15 {
16 public:
17         ScanResultsItem(QTreeWidget *tree) : QTreeWidgetItem(tree) {}
18         bool operator< (const QTreeWidgetItem &other) const;
19 };
20
21 #endif /* SCANRESULTSITEM_H */