Files
status-app/src-cpp/app/modules/main/view.cpp
T
Khushboo Mehta 42da8a2408 feat(@desktop/wallet): move accounts to cpp
created skeleton for wallet_section
added getAccounts api

fixes #4750
2022-02-16 16:01:37 +01:00

20 lines
285 B
C++

#include "view.h"
namespace Modules
{
namespace Main
{
View::View(QObject* parent)
: QObject(parent)
{ }
void View::load()
{
// At some point, here, we will setup some exposed main module related things.
emit viewLoaded();
}
} // namespace Main
} // namespace Modules