mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-01 01:06:07 +00:00
16 lines
224 B
C++
16 lines
224 B
C++
#pragma once
|
|
|
|
namespace Modules
|
|
{
|
|
namespace Main
|
|
{
|
|
|
|
// Abstract class for any input/interaction with this module.
|
|
|
|
class ControllerInterface
|
|
{
|
|
public:
|
|
virtual void init() = 0;
|
|
};
|
|
} // namespace Main
|
|
} // namespace Modules
|