- #include "simdisplay.h"
- #include "ui_simdisplay.h"
- #include "mainwindow.h"
- #include "ui_mainwindow.h"
- SimDisplay::SimDisplay(QWidget *parent) :
- QDialog(parent),
- ui(new Ui::SimDisplay)
- {
- ui->setupUi(this);
- this->setParent(parent);
- }
- SimDisplay::~SimDisplay(){
- delete ui;
- }
|