mirror of
https://github.com/status-im/status-app.git
synced 2026-08-31 09:01:11 +00:00
23 lines
406 B
C++
23 lines
406 B
C++
#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
|