Files
status-app/src-cpp/app/modules/main/controller.h
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

28 lines
405 B
C++

#ifndef CONTROLLER_H
#define CONTROLLER_H
#include <QObject>
#include "interfaces/controller_interface.h"
#include "signals.h"
namespace Modules
{
namespace Main
{
class Controller : public QObject, IController
{
public:
explicit Controller(QObject* parent = nullptr);
~Controller() = default;
void init() override;
};
} // namespace Main
} // namespace Modules
#endif // CONTROLLER_H