mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-11 06:47:01 +00:00
14 lines
197 B
C++
14 lines
197 B
C++
#pragma once
|
|
|
|
namespace Modules
|
|
{
|
|
namespace Startup
|
|
{
|
|
class ModuleOnboardingDelegateInterface
|
|
{
|
|
public:
|
|
virtual void onboardingDidLoad() = 0;
|
|
};
|
|
}; // namespace Startup
|
|
}; // namespace Modules
|