mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-22 12:29:37 +00:00
10 lines
132 B
C++
10 lines
132 B
C++
#pragma once
|
|
|
|
class AppControllerDelegate
|
|
{
|
|
public:
|
|
virtual void startupDidLoad() = 0;
|
|
|
|
virtual void userLoggedIn() = 0;
|
|
};
|