Blame view

app/gui/oven_control/programmingselectionwindow.h 419 Bytes
81b835e59   김태훈   한글 폰트 변경
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  #ifndef PROGRAMMINGSELECTIONWINDOW_H
  #define PROGRAMMINGSELECTIONWINDOW_H
  
  #include <QMainWindow>
  
  namespace Ui {
  class ProgrammingSelectionWindow;
  }
  
  class ProgrammingSelectionWindow : public QMainWindow
  {
      Q_OBJECT
  
  public:
      explicit ProgrammingSelectionWindow(QWidget *parent = 0);
      ~ProgrammingSelectionWindow();
  
  private:
      Ui::ProgrammingSelectionWindow *ui;
  };
  
  #endif // PROGRAMMINGSELECTIONWINDOW_H