mirror of
https://github.com/status-im/status-app.git
synced 2026-08-31 09:01:11 +00:00
23 lines
323 B
C++
23 lines
323 B
C++
#pragma once
|
|
|
|
#include <stdexcept>
|
|
|
|
class AppControllerDelegate
|
|
{
|
|
public:
|
|
virtual void startupDidLoad()
|
|
{
|
|
throw std::domain_error("Not implemented");
|
|
}
|
|
|
|
virtual void mainDidLoad()
|
|
{
|
|
throw std::domain_error("Not implemented");
|
|
}
|
|
|
|
virtual void userLoggedIn()
|
|
{
|
|
throw std::domain_error("Not implemented");
|
|
}
|
|
};
|