mirror of
https://github.com/elasota/Aerofoil.git
synced 2026-03-02 05:42:18 +00:00
18 lines
254 B
C
18 lines
254 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "HostKeyID.h"
|
||
|
|
|
||
|
|
namespace PortabilityLayer
|
||
|
|
{
|
||
|
|
class HostInputDriver
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
|
||
|
|
static HostInputDriver *GetInstance();
|
||
|
|
static void SetInstance(HostInputDriver *instance);
|
||
|
|
|
||
|
|
private:
|
||
|
|
static HostInputDriver *ms_instance;
|
||
|
|
};
|
||
|
|
}
|