forked from blue/squawk
15 lines
192 B
C++
15 lines
192 B
C++
|
#include "settings.h"
|
||
|
#include "ui_settings.h"
|
||
|
|
||
|
Settings::Settings(QWidget* parent):
|
||
|
QWidget(parent),
|
||
|
m_ui(new Ui::Settings())
|
||
|
{
|
||
|
m_ui->setupUi(this);
|
||
|
}
|
||
|
|
||
|
Settings::~Settings()
|
||
|
{
|
||
|
}
|
||
|
|