GITLAB

에프에이리눅스 / 1611_0007_prime_oven

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • 1611_0007_prime_oven
  • app
  • gui
  • oven_control
  • errorpopupdlg.h
  • 6defa93ae   에러 팝업 디자인 변경 ... Browse Code »
    - 고객사 디자인 적용
    고영탁
    2017-04-19 16:52:04 +0900  
errorpopupdlg.h 409 Bytes
edit raw blame history
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
#ifndef ERRORPOPUPDLG_H
#define ERRORPOPUPDLG_H

#include <QDialog>

namespace Ui {
class errorPopupDlg;
}

class errorPopupDlg : public QDialog
{
    Q_OBJECT

public:
    explicit errorPopupDlg(QWidget *parent = 0, const QString &MsgDesc=0, const QString &MsgTitle=0);
    ~errorPopupDlg();

private slots:
    void on_ctrlOkBtn_clicked();

private:
    Ui::errorPopupDlg *ui;
};

#endif // ERRORPOPUPDLG_H