status-desktop/src-cpp/app/modules/main/controller.cpp

18 lines
371 B
C++
Raw Normal View History

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
{
Controller::Controller(ModuleControllerDelegateInterface* d, QObject* parent)
: QObject(parent)
, m_delegate(d)
{ }
void Controller::init() { }
} // namespace Main
} // namespace Modules