mirror of
https://github.com/status-im/status-app.git
synced 2026-09-01 09:31:17 +00:00
19 lines
232 B
C++
19 lines
232 B
C++
#pragma once
|
|
|
|
#include <stdexcept>
|
|
|
|
namespace Modules
|
|
{
|
|
namespace Main
|
|
{
|
|
class ModuleAccessInterface
|
|
{
|
|
public:
|
|
virtual void load()
|
|
{
|
|
throw std::domain_error("Not implemented");
|
|
}
|
|
};
|
|
}; // namespace Main
|
|
}; // namespace Modules
|