mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-11 06:47:01 +00:00
c0024ec6b1
Good coding practices applied only, architecture and logic were not altered.
20 lines
257 B
C++
20 lines
257 B
C++
#pragma once
|
|
|
|
#include <QObject>
|
|
|
|
namespace Modules::Main::Wallet
|
|
{
|
|
class View : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit View(QObject* parent = nullptr);
|
|
|
|
void load();
|
|
|
|
signals:
|
|
void viewLoaded();
|
|
};
|
|
} // namespace Modules::Main::Wallet
|