#include "controller.h" #include "accounts/service_interface.h" #include "interfaces/module_controller_delegate_interface.h" #include namespace Modules { namespace Main { Controller::Controller(ModuleControllerDelegateInterface* delegate, QObject* parent) : QObject(parent) , m_delegate(delegate) { } void Controller::init() { } } // namespace Main } // namespace Modules