1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00
LibQQt/demo/QQtRoseMonitor/mainwindow.cpp

18 lines
251 B
C++
Raw Normal View History

2018-07-01 18:47:31 +08:00
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow ( QWidget* parent ) :
QMainWindow ( parent ),
ui ( new Ui::MainWindow )
2018-07-01 18:47:31 +08:00
{
ui->setupUi ( this );
2018-07-01 18:47:31 +08:00
}
MainWindow::~MainWindow()
{
delete ui;
}