unlock.h 292 B

12345678910111213141516171819202122232425
  1. #ifndef UNLOCK_H
  2. #define UNLOCK_H
  3. #include <QWidget>
  4. namespace Ui {
  5. class Unlock;
  6. }
  7. class Unlock : public QWidget
  8. {
  9. Q_OBJECT
  10. public:
  11. explicit Unlock(QWidget *parent = nullptr);
  12. ~Unlock();
  13. void quit();
  14. void alarm();
  15. private:
  16. Ui::Unlock *ui;
  17. };
  18. #endif // UNLOCK_H