mirror of
https://github.com/status-im/status-app.git
synced 2026-08-31 09:01:11 +00:00
20 lines
285 B
C++
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
|