mainwindowtest.cpp 261 B

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