2022-01-20 14:48:57 +00:00
|
|
|
#include "controller.h"
|
|
|
|
#include "accounts/service_interface.h"
|
|
|
|
#include "interfaces/module_controller_delegate_interface.h"
|
|
|
|
#include <QDebug>
|
|
|
|
|
|
|
|
namespace Modules
|
|
|
|
{
|
|
|
|
namespace Main
|
|
|
|
{
|
2022-01-20 15:50:10 +00:00
|
|
|
Controller::Controller(ModuleControllerDelegateInterface* delegate, QObject* parent)
|
2022-01-20 14:48:57 +00:00
|
|
|
: QObject(parent)
|
2022-01-20 15:50:10 +00:00
|
|
|
, m_delegate(delegate)
|
2022-01-20 14:48:57 +00:00
|
|
|
{ }
|
|
|
|
|
|
|
|
void Controller::init() { }
|
|
|
|
|
|
|
|
} // namespace Main
|
|
|
|
} // namespace Modules
|