mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
15 lines
270 B
C++
15 lines
270 B
C++
|
#include "qqtmainglform.h"
|
||
|
#include "ui_qqtmainglform.h"
|
||
|
|
||
|
QQtMainGLForm::QQtMainGLForm ( QWidget* parent ) :
|
||
|
QQtOpenGLWidget ( parent ),
|
||
|
ui ( new Ui::QQtMainGLForm )
|
||
|
{
|
||
|
ui->setupUi ( this );
|
||
|
}
|
||
|
|
||
|
QQtMainGLForm::~QQtMainGLForm()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|