mirror of
https://github.com/status-im/status-app.git
synced 2026-08-31 09:01:11 +00:00
feat: add empty main module
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
#include "view.h"
|
||||
#include "interfaces/module_view_delegate_interface.h"
|
||||
#include <QObject>
|
||||
|
||||
namespace Modules
|
||||
{
|
||||
namespace Main
|
||||
{
|
||||
|
||||
View::View(ModuleViewDelegateInterface* d, QObject* parent)
|
||||
: QObject(parent)
|
||||
{
|
||||
m_delegate = d;
|
||||
}
|
||||
|
||||
void View::load()
|
||||
{
|
||||
// In some point, here, we will setup some exposed main module related things.
|
||||
m_delegate->viewDidLoad();
|
||||
}
|
||||
|
||||
} // namespace Main
|
||||
} // namespace Modules
|
||||
Reference in New Issue
Block a user