ES-DE/es-core/src/CECInput.h
Tomas Jakobsson b6b6f73a24 Log everything CEC does
Only support libcec4
2017-11-29 21:00:36 +01:00

31 lines
583 B
C++

#pragma once
#ifndef ES_CORE_CECINPUT_H
#define ES_CORE_CECINPUT_H
#include <string>
namespace CEC { class ICECAdapter; }
class CECInput
{
public:
static void init ();
static void deinit ();
static std::string getAlertTypeString(const unsigned int _type);
static std::string getOpCodeString (const unsigned int _opCode);
static std::string getKeyCodeString (const unsigned int _keyCode);
private:
CECInput();
~CECInput();
static CECInput* sInstance;
CEC::ICECAdapter* mlibCEC;
}; // CECInput
#endif // ES_CORE_CECINPUT_H