1 2 3 4 5 6 7 8 9 10 11 12 13 14
#include "mtmainwindow.h" #include "ui_mtmainwindow.h" MTMainWindow::MTMainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MTMainWindow) { ui->setupUi(this); } MTMainWindow::~MTMainWindow() { delete ui; }