feat: add empty main module

This commit is contained in:
Richard Ramos
2022-02-01 15:48:54 -04:00
parent ec330b2ac8
commit 99ebb07d5c
14 changed files with 265 additions and 14 deletions
+18
View File
@@ -0,0 +1,18 @@
#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