Blame view

app/gui/oven_control/configwindow.h 424 Bytes
8c2952457   김태훈   응용 프로그램 추가
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 CONFIGWINDOW_H
  #define CONFIGWINDOW_H
  
  #include <QMainWindow>
  
  #include "udphandler.h"
  
  namespace Ui {
  class ConfigWindow;
  }
  
  class ConfigWindow : public QMainWindow
  {
      Q_OBJECT
  
  public:
      explicit ConfigWindow(QWidget *parent = 0, UdpHandler *udp = 0);
      ~ConfigWindow();
  
  private slots:
      void on_pushButton_clicked();
  
  private:
      Ui::ConfigWindow *ui;
      UdpHandler *udp;
  };
  
  #endif // CONFIGWINDOW_H