mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 13:56:10 +00:00
17 lines
210 B
C++
17 lines
210 B
C++
#include <QDebug>
|
|
|
|
#include "view.h"
|
|
|
|
namespace Modules::Main::Wallet
|
|
{
|
|
View::View(QObject* parent)
|
|
: QObject(parent)
|
|
{ }
|
|
|
|
void View::load()
|
|
{
|
|
emit viewLoaded();
|
|
}
|
|
|
|
} // namespace Modules::Main::Wallet
|