Blame view

app/gui/oven_control/errorpopupdlg.h 409 Bytes
c50beef02   고영탁   에러 처리 루틴 및 에러 처리 ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  #ifndef ERRORPOPUPDLG_H
  #define ERRORPOPUPDLG_H
  
  #include <QDialog>
  
  namespace Ui {
  class errorPopupDlg;
  }
  
  class errorPopupDlg : public QDialog
  {
      Q_OBJECT
  
  public:
6defa93ae   고영탁   에러 팝업 디자인 변경
15
      explicit errorPopupDlg(QWidget *parent = 0, const QString &MsgDesc=0, const QString &MsgTitle=0);
c50beef02   고영탁   에러 처리 루틴 및 에러 처리 ...
16
17
18
      ~errorPopupDlg();
  
  private slots:
6defa93ae   고영탁   에러 팝업 디자인 변경
19
      void on_ctrlOkBtn_clicked();
c50beef02   고영탁   에러 처리 루틴 및 에러 처리 ...
20
21
22
23
24
25
  
  private:
      Ui::errorPopupDlg *ui;
  };
  
  #endif // ERRORPOPUPDLG_H