Skip to content

Commit

Permalink
Fix for compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
andreilitvin committed Nov 16, 2023
1 parent 8141404 commit 13ec370
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
using chip::app::CommandResponseHelper;
using KeypadInputDelegate = chip::app::Clusters::KeypadInput::Delegate;
using SendKeyResponseType = chip::app::Clusters::KeypadInput::Commands::SendKeyResponse::Type;
using CecKeyCodeEnumType = chip::app::Clusters::KeypadInput::CecKeyCodeEnum;
using CecKeyCodeType = chip::app::Clusters::KeypadInput::CecKeyCodeEnum;

class KeypadInputManager : public KeypadInputDelegate
{
public:
void HandleSendKey(CommandResponseHelper<SendKeyResponseType> & helper, const CecKeyCodeEnumType & keyCode) override;
void HandleSendKey(CommandResponseHelper<SendKeyResponseType> & helper, const CecKeyCodeType & keyCode) override;

uint32_t GetFeatureMap(chip::EndpointId endpoint) override;

Expand Down

0 comments on commit 13ec370

Please sign in to comment.