X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2Fimplementations%2FSLCommandHandler.h;h=bc917dccf4976b81e3d8290ccd0e0c4b8cc18251;hb=8354f74710bf154d9b31335958b0189f10d6a408;hp=76a99701c0db91386a3492bb6bb2283b34e72e5b;hpb=722869e27e6f6ef9db09fa9114994e167b7e8894;p=deb_libcec.git diff --git a/src/lib/implementations/SLCommandHandler.h b/src/lib/implementations/SLCommandHandler.h index 76a9970..bc917dc 100644 --- a/src/lib/implementations/SLCommandHandler.h +++ b/src/lib/implementations/SLCommandHandler.h @@ -41,5 +41,11 @@ namespace CEC CSLCommandHandler(CCECBusDevice *busDevice); virtual ~CSLCommandHandler(void) {}; virtual cec_vendor_id GetVendorId(void) { return CEC_VENDOR_LG; }; + + virtual bool HandleCommand(const cec_command &command); + + protected: + virtual bool HandleGiveDeviceVendorId(const cec_command &command); + virtual bool HandleVendorCommand(const cec_command &command); }; };