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

15 lines
270 B
C++
Raw Normal View History

2018-04-20 20:34:03 +08:00
#include "qqtmainglform.h"
#include "ui_qqtmainglform.h"
QQtMainGLForm::QQtMainGLForm ( QWidget* parent ) :
QQtOpenGLWidget ( parent ),
ui ( new Ui::QQtMainGLForm )
{
ui->setupUi ( this );
}
QQtMainGLForm::~QQtMainGLForm()
{
delete ui;
}