mirror of
https://github.com/status-im/status-app.git
synced 2026-08-31 09:01:11 +00:00
23 lines
362 B
C++
23 lines
362 B
C++
#pragma once
|
|
|
|
#include "interfaces/module_view_delegate_interface.h"
|
|
#include <QObject>
|
|
|
|
namespace Modules
|
|
{
|
|
namespace Main
|
|
{
|
|
|
|
class View : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit View(ModuleViewDelegateInterface* d, QObject* parent = nullptr);
|
|
void load();
|
|
|
|
private:
|
|
ModuleViewDelegateInterface* m_delegate;
|
|
};
|
|
} // namespace Main
|
|
} // namespace Modules
|