Advertisement
Guest User

Untitled

a guest
May 29th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.60 KB | None | 0 0
  1. QT_BEGIN_NAMESPACE
  2. class QNetworkConfigurationManager;
  3. QT_END_NAMESPACE
  4.  
  5. #ifndef STKEYS_H
  6. #define STKEYS_H
  7.  
  8. #include <QNetworkConfigurationManager>
  9. #include <QMainWindow>
  10.  
  11. namespace Ui {
  12.     class STKeys;
  13. }
  14.  
  15.  
  16. class STKeys : public QMainWindow
  17. {
  18.     Q_OBJECT
  19.  
  20. public:
  21.     explicit STKeys(QWidget *parent = 0);
  22.     ~STKeys();
  23.     void show_note(const QString & message, bool remove);
  24.  
  25. private slots:
  26.     void on_btn_scan_clicked();
  27.     void on_btn_about_clicked();
  28.  
  29.     int scan_networks();
  30.  
  31. private:
  32.     Ui::STKeys *ui;
  33.     QNetworkConfigurationManager manager;
  34. };
  35.  
  36. #endif // STKEYS_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement