18 lines
385 B
C++
Raw Normal View History

2022-01-20 10:48:57 -04: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 11:50:10 -04:00
Controller::Controller(ModuleControllerDelegateInterface* delegate, QObject* parent)
2022-01-20 10:48:57 -04:00
: QObject(parent)
2022-01-20 11:50:10 -04:00
, m_delegate(delegate)
2022-01-20 10:48:57 -04:00
{ }
void Controller::init() { }
} // namespace Main
} // namespace Modules