mirror of
https://github.com/status-im/status-app.git
synced 2026-08-31 17:11:10 +00:00
18 lines
250 B
C++
18 lines
250 B
C++
#pragma once
|
|
|
|
#include <stdexcept>
|
|
|
|
namespace Modules
|
|
{
|
|
namespace Startup
|
|
{
|
|
class ModuleViewDelegateInterface
|
|
{
|
|
public:
|
|
virtual void viewDidLoad()
|
|
{
|
|
throw std::domain_error("Not implemented");
|
|
}
|
|
};
|
|
}; // namespace Startup
|
|
}; // namespace Modules
|