Blame view

app/gui/oven_control/servicehistorymain.h 525 Bytes
6a965b9f1   고영탁   엔지니어 모드 2차 구현
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
29
30
31
  #ifndef SERVICEHISTORYMAIN_H
  #define SERVICEHISTORYMAIN_H
  
  #include <QMainWindow>
  
  namespace Ui {
  class serviceHistoryMain;
  }
  
  class serviceHistoryMain : public QMainWindow
  {
      Q_OBJECT
  
  public:
      explicit serviceHistoryMain(QWidget *parent = 0);
      ~serviceHistoryMain();
  
  private slots:
      void on_btnUpperBunner_clicked();
  
      void on_btnSteamBunner_clicked();
  
      void on_btnLowerBunner_clicked();
  
      void on_btnErrorTotal_clicked();
  
  private:
      Ui::serviceHistoryMain *ui;
  };
  
  #endif // SERVICEHISTORYMAIN_H