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

18 lines
274 B
C++

#ifndef ICONTROLLER_H
#define ICONTROLLER_H
namespace Modules
{
namespace Main
{
// Abstract class for any input/interaction with this module.
class IController
{
public:
virtual void init() = 0;
};
} // namespace Main
} // namespace Modules
#endif // ICONTROLLER_H