Blame view

app/gui/oven_control/manualviewerdlg.h 373 Bytes
35b9cc32e   고영탁   다국어 지원 수정 및 메뉴얼 테...
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 MANUALVIEWERDLG_H
  #define MANUALVIEWERDLG_H
  
  #include <QDialog>
  
  namespace Ui {
  class ManualViewerDlg;
  }
  
  class ManualViewerDlg : public QDialog
  {
      Q_OBJECT
  
  public:
      explicit ManualViewerDlg(QWidget *parent = 0);
      ~ManualViewerDlg();
  
  private slots:
      void on_backButton_clicked();
  
  private:
      Ui::ManualViewerDlg *ui;
  };
  
  #endif // MANUALVIEWERDLG_H