Rabbit Remote Control 0.0.30
Loading...
Searching...
No Matches
DlgUserPassword.h
1#ifndef DLGUSERPASSWORD_H
2#define DLGUSERPASSWORD_H
3
4#include <QDialog>
5#include "ParameterChannelSSH.h"
6
7namespace Ui {
9}
10
11class CDlgUserPassword : public QDialog
12{
13 Q_OBJECT
14
15public:
16 explicit CDlgUserPassword(QWidget *parent = nullptr);
19
20 Q_INVOKABLE void SetContext(void* pContext);
21
22private:
23 Ui::CDlgUserPassword *ui;
24 CParameterChannelSSH* m_pPara;
25
26 // QDialog interface
27public slots:
28 virtual void accept() override;
29};
30
31Q_DECLARE_METATYPE(CDlgUserPassword)
32
33#endif // DLGUSERPASSWORD_H