dialogchangepass.h 532 B

123456789101112131415161718192021222324252627282930
  1. #ifndef DIALOGCHANGEPASS_H
  2. #define DIALOGCHANGEPASS_H
  3. #include <QDialog>
  4. namespace Ui {
  5. class DialogChangePass;
  6. }
  7. class DialogChangePass : public QDialog
  8. {
  9. Q_OBJECT
  10. public:
  11. explicit DialogChangePass(QWidget *parent = 0);
  12. void setUserHash(QString userHash);
  13. void setHost(QString host);
  14. ~DialogChangePass();
  15. private slots:
  16. void on_buttonBox_accepted();
  17. private:
  18. Ui::DialogChangePass *ui;
  19. QString userHash;
  20. QString host;
  21. };
  22. #endif // DIALOGCHANGEPASS_H