scanresultsitem.h 501 B

123456789101112131415161718192021
  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. #ifndef SCANRESULTSITEM_H
  9. #define SCANRESULTSITEM_H
  10. #include <QTreeWidgetItem>
  11. class ScanResultsItem : public QTreeWidgetItem
  12. {
  13. public:
  14. ScanResultsItem(QTreeWidget *tree) : QTreeWidgetItem(tree) {}
  15. bool operator< (const QTreeWidgetItem &other) const;
  16. };
  17. #endif /* SCANRESULTSITEM_H */