d0ee3ccc8
고영탁
버그 수정 및 비밀 번호 입력창 개발
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef SERVICEPASSINPUTDLG_H
#define SERVICEPASSINPUTDLG_H
#include <QDialog>
namespace Ui {
class ServicePassInputDlg;
}
class ServicePassInputDlg : public QDialog
{
Q_OBJECT
public:
explicit ServicePassInputDlg(QWidget *parent = 0);
~ServicePassInputDlg();
private slots:
void on_ctrBtnOk_clicked();
void on_ctrBtnCancel_clicked();
private:
Ui::ServicePassInputDlg *ui;
};
#endif // SERVICEPASSINPUTDLG_H
|