16 lines
288 B
C++
16 lines
288 B
C++
#include "MainWindow.h"
|
|
#include "ui_MainWindow.h"
|
|
|
|
MainWindow::MainWindow(QWidget* parent) : SARibbonMainWindow(parent, false)
|
|
{
|
|
if (!isUseRibbon()) {
|
|
ui = new Ui::MainWindow;
|
|
ui->setupUi(this);
|
|
}
|
|
}
|
|
|
|
MainWindow::~MainWindow()
|
|
{
|
|
delete ui;
|
|
}
|