mirror of
https://github.com/status-im/status-app.git
synced 2026-08-31 17:11:10 +00:00
18 lines
274 B
C++
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
|