Blame view

app/gui/oven_control/configfileprocessdlg.h 597 Bytes
776411ce5   고영탁   설정 기능 5월 개발 범위 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
28
  #ifndef CONFIGFILEPROCESSDLG_H
  #define CONFIGFILEPROCESSDLG_H
  
  #include <QDialog>
  #include "config.h"
  
  using namespace Define;
  
  namespace Ui {
      class ConfigFileProcessDlg;
  }
  
  class ConfigFileProcessDlg : public QDialog
  {
      Q_OBJECT
  
  public:
      explicit ConfigFileProcessDlg(QWidget *parent = 0,ConfigType type = config_invalid, bool isDown = true);
      ~ConfigFileProcessDlg();
  
  private slots:
      void on_ctrBtnOk_clicked();
  
      void on_ctrBtnCancel_clicked();
  
  private:
      Ui::ConfigFileProcessDlg *ui;
      ConfigType m_nCfgtype;
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
29
      bool m_bIsDown;
776411ce5   고영탁   설정 기능 5월 개발 범위 UI...
30
31
32
  };
  
  #endif // CONFIGFILEPROCESSDLG_H