16 lines
336 B
C++
16 lines
336 B
C++
#include "OpenRGBLIFXSettingsEntry.h"
|
|
#include "ui_OpenRGBLIFXSettingsEntry.h"
|
|
|
|
using namespace Ui;
|
|
|
|
OpenRGBLIFXSettingsEntry::OpenRGBLIFXSettingsEntry(QWidget *parent) :
|
|
QWidget(parent),
|
|
ui(new Ui::OpenRGBLIFXSettingsEntryUi)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
OpenRGBLIFXSettingsEntry::~OpenRGBLIFXSettingsEntry()
|
|
{
|
|
delete ui;
|
|
}
|