mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 06:53:43 +00:00
17 lines
285 B
C++
17 lines
285 B
C++
#include "AppEventHandler.h"
|
|
|
|
namespace PortabilityLayer
|
|
{
|
|
IAppEventHandler *AppEventHandler::ms_instance;
|
|
|
|
IAppEventHandler *AppEventHandler::GetInstance()
|
|
{
|
|
return ms_instance;
|
|
}
|
|
|
|
void AppEventHandler::SetInstance(IAppEventHandler *instance)
|
|
{
|
|
ms_instance = instance;
|
|
}
|
|
}
|