Blame view

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