mirror of
https://github.com/outbackdingo/amnezia-client.git
synced 2026-01-27 10:18:14 +00:00
9 lines
183 B
C++
9 lines
183 B
C++
#include "configurator_base.h"
|
|
|
|
ConfiguratorBase::ConfiguratorBase(std::shared_ptr<Settings> settings, QObject *parent)
|
|
: QObject{parent},
|
|
m_settings(settings)
|
|
{
|
|
|
|
}
|