Blame view

app/gui/oven_control/yesnopopupdlg.h 409 Bytes
c12e09d9a   고영탁   교정 UI 및 팝업 추가
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 YESNOPOPUPDLG_H
  #define YESNOPOPUPDLG_H
  
  #include <QDialog>
  
  namespace Ui {
  class YesNoPopupDlg;
  }
  
  class YesNoPopupDlg : public QDialog
  {
      Q_OBJECT
  
  public:
      explicit YesNoPopupDlg(QWidget *parent = 0, QString strDesc="");
      ~YesNoPopupDlg();
  
  private slots:
      void on_ctrBtnYes_clicked();
  
      void on_ctrBtnNo_clicked();
  
  private:
      Ui::YesNoPopupDlg *ui;
  };
  
  #endif // YESNOPOPUPDLG_H