mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-08 04:34:01 +00:00
14 lines
163 B
C++
14 lines
163 B
C++
#pragma once
|
|
|
|
namespace Modules
|
|
{
|
|
namespace Main
|
|
{
|
|
class ModuleAccessInterface
|
|
{
|
|
public:
|
|
virtual void load() = 0;
|
|
};
|
|
}; // namespace Main
|
|
}; // namespace Modules
|