#ifndef DIALOGCHANGEPASS_H #define DIALOGCHANGEPASS_H #include namespace Ui { class DialogChangePass; } class DialogChangePass : public QDialog { Q_OBJECT public: explicit DialogChangePass(QWidget *parent = 0); void setUserHash(QString userHash); void setHost(QString host); ~DialogChangePass(); private slots: void on_buttonBox_accepted(); private: Ui::DialogChangePass *ui; QString userHash; QString host; }; #endif // DIALOGCHANGEPASS_H