mirror of
https://github.com/status-im/status-app.git
synced 2026-08-31 17:11:10 +00:00
21 lines
293 B
C++
21 lines
293 B
C++
#pragma once
|
|
|
|
#include <stdexcept>
|
|
|
|
namespace Modules
|
|
{
|
|
namespace Main
|
|
{
|
|
|
|
// Abstract class for any input/interaction with this module.
|
|
|
|
class ControllerInterface
|
|
{
|
|
public:
|
|
virtual void init()
|
|
{
|
|
throw std::domain_error("Not implemented");
|
|
}
|
|
};
|
|
} // namespace Main
|
|
} // namespace Modules
|