simdisplay.cpp 295 B

12345678910111213141516
  1. #include "simdisplay.h"
  2. #include "ui_simdisplay.h"
  3. #include "mainwindow.h"
  4. #include "ui_mainwindow.h"
  5. SimDisplay::SimDisplay(QWidget *parent) :
  6. QDialog(parent),
  7. ui(new Ui::SimDisplay)
  8. {
  9. ui->setupUi(this);
  10. this->setParent(parent);
  11. }
  12. SimDisplay::~SimDisplay(){
  13. delete ui;
  14. }