#include "qscopemainwindow.h" #include "./ui_qscopemainwindow.h" QScopeMainWindow::QScopeMainWindow(QWidget *parent) : QMainWindow(parent) , ui(new Ui::QScopeMainWindow) { ui->setupUi(this); } QScopeMainWindow::~QScopeMainWindow() { delete ui; }