bigsnitch/settings.cpp

15 lines
201 B
C++
Raw Normal View History

#include "settings.h"
#include "ui_settings.h"
Settings::Settings(QWidget *parent) :
QWidget(parent),
ui(new Ui::Settings)
{
ui->setupUi(this);
}
Settings::~Settings()
{
delete ui;
}