Blame view

app/gui/oven_control/main.cpp 462 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
  #include "mainwindow.h"
  #include "manualcookwindow.h"
  #include "functiontestwindow.h"
  #include "udphandler.h"
  #include <QApplication>
  
  int main(int argc, char *argv[])
  {
      QApplication a(argc, argv);
  
      MainWindow w;
      w.showFullScreen();
  
  //    ManualCookWindow w;
  //    w.show();
  
  //    UdpHandler *udp = new UdpHandler;
  //    udp->init();
  
  //    FunctionTestWindow *w = new FunctionTestWindow(0, udp);
  //    w->showFullScreen();
  
      return a.exec();
  }