GITLAB

에프에이리눅스 / 1611_0007_prime_oven

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
35b9cc32ef2e86bff5f696c5b3b5f12005c99e03
  • 1611_0007_prime_oven
  • app
  • gui
  • samples
  • analogclock
  • main.cpp
  • d2d4687e0   아날로그 시계 추가 Browse Code »
    김태훈
    8 years ago  
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();
}