mirror of
https://github.com/Lime3DS/Lime3DS
synced 2025-01-07 20:53:24 +00:00
14 lines
294 B
C++
14 lines
294 B
C++
#include "configure_enhancements.h"
|
|
#include "ui_configure_enhancements.h"
|
|
|
|
ConfigureEnhancements::ConfigureEnhancements(QWidget *parent) :
|
|
QWidget(parent),
|
|
ui(new Ui::ConfigureEnhancements)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
ConfigureEnhancements::~ConfigureEnhancements()
|
|
{
|
|
delete ui;
|
|
}
|