Blame view

app/gui/oven_control/gastestwindow.cpp 426 Bytes
8c2952457   김태훈   응용 프로그램 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  #include "gastestwindow.h"
  #include "ui_gastestwindow.h"
  
  GasTestWindow::GasTestWindow(QWidget *parent, UdpHandler *udp) :
      QMainWindow(parent),
      ui(new Ui::GasTestWindow), udp(udp)
  {
      ui->setupUi(this);
      ui->clockContainer->setParent(ui->upperStack);
      connect(udp, SIGNAL(changed()), this, SLOT(onDataChanged()));
  }
  
  GasTestWindow::~GasTestWindow()
  {
      delete ui;
  }
  
  void GasTestWindow::onDataChanged()
  {
  
  }