mainwindow.cpp (208B)
1 #include "mainwindow.h" 2 #include "./ui_mainwindow.h" 3 4 MainWindow::MainWindow(QWidget *parent) 5 : QMainWindow(parent), ui(new Ui::MainWindow) 6 { 7 ui->setupUi(this); 8 } 9 10 MainWindow::~MainWindow() 11 { 12 delete ui; 13 }