GITLAB

에프에이리눅스 / 1611_0007_prime_oven

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • 1611_0007_prime_oven
  • app
  • gui
  • packet
  • main.cpp
  • 81bee1ec4   원격 패킷 출력 프로그램 추가 Browse Code »
    김태훈
    2017-03-07 19:48:31 +0900  
main.cpp 172 Bytes
edit raw blame history
1 2 3 4 5 6 7 8 9 10 11
#include "mainwindow.h"
#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();

    return a.exec();
}