mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 14:26:34 +00:00
c0024ec6b1
Good coding practices applied only, architecture and logic were not altered.
13 lines
231 B
C++
13 lines
231 B
C++
#pragma once
|
|
|
|
namespace Modules::Main
|
|
{
|
|
// Abstract class for any input/interaction with this module.
|
|
class IController
|
|
{
|
|
public:
|
|
virtual void init() = 0;
|
|
virtual ~IController() = default;
|
|
};
|
|
} // namespace Modules::Main
|