2022-02-22 08:02:34 +00:00
|
|
|
#pragma once
|
2022-02-14 14:38:41 +00:00
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
2022-02-16 21:51:04 +00:00
|
|
|
namespace Modules::Main::Wallet
|
2022-02-14 14:38:41 +00:00
|
|
|
{
|
|
|
|
class View : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit View(QObject* parent = nullptr);
|
|
|
|
|
|
|
|
void load();
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void viewLoaded();
|
|
|
|
};
|
2022-02-16 21:51:04 +00:00
|
|
|
} // namespace Modules::Main::Wallet
|