X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2Fimplementations%2FSLCommandHandler.h;h=9d3ba013bf27669a193b181a41f41d34ec3e9ba1;hb=11d13a028204b3ead4019292845e160a0edd5c52;hp=bc917dccf4976b81e3d8290ccd0e0c4b8cc18251;hpb=fdd91966a0d9d32b3e68cd91b6612840b80b227d;p=deb_libcec.git diff --git a/src/lib/implementations/SLCommandHandler.h b/src/lib/implementations/SLCommandHandler.h index bc917dc..9d3ba01 100644 --- a/src/lib/implementations/SLCommandHandler.h +++ b/src/lib/implementations/SLCommandHandler.h @@ -43,9 +43,15 @@ namespace CEC virtual cec_vendor_id GetVendorId(void) { return CEC_VENDOR_LG; }; virtual bool HandleCommand(const cec_command &command); + virtual void HandlePoll(const cec_logical_address iInitiator, const cec_logical_address iDestination); + virtual bool HandleReceiveFailed(void); + virtual bool InitHandler(void); + virtual bool TransmitLGVendorId(const cec_logical_address iInitiator, const cec_logical_address iDestination); protected: virtual bool HandleGiveDeviceVendorId(const cec_command &command); virtual bool HandleVendorCommand(const cec_command &command); + + bool m_bAwaitingReceiveFailed; }; };