0e279295f
김태훈
수동 요리 구현
|
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
28
29
30
31
|
#ifndef RESERVETIMEPOPUP_H
#define RESERVETIMEPOPUP_H
#include <QWidget>
namespace Ui {
class ReserveTimePopup;
}
class ReserveTimePopup : public QWidget
{
Q_OBJECT
public:
explicit ReserveTimePopup(QWidget *parent = 0);
~ReserveTimePopup();
private slots:
void on_okButton_clicked();
void on_cancelButton_clicked();
private:
Ui::ReserveTimePopup *ui;
signals:
void timeout();
void canceled();
};
#endif // RESERVETIMEPOPUP_H
|