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
  • mainwindow.cpp
  • d2d4687e0   아날로그 시계 추가 Browse Code »
    김태훈
    8 years ago  
mainwindow.cpp 219 Bytes
edit raw blame history
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#include "mainwindow.h"
#include "ui_mainwindow.h"

MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::MainWindow)
{
    ui->setupUi(this);
}

MainWindow::~MainWindow()
{
    delete ui;
}