Skip to content

Commit

Permalink
Restyled by clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
restyled-commits authored and liangpy4 committed Nov 27, 2023
1 parent 0799ef9 commit d53aa52
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class ExampleMicrowaveOvenControlDelegate : public MicrowaveOvenControl::Delegat
* Handle Command Callback in application: set-cooking-parameters
*/
Protocols::InteractionModel::Status HandleSetCookingParametersCallback(uint8_t cookMode, uint32_t cookTime,
uint8_t powerSetting) override;
uint8_t powerSetting) override;

/**
* Handle Command Callback in application: add-more-time
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ using namespace chip::app::Clusters::MicrowaveOvenControl;

// Microwave Oven Control command callbacks
Protocols::InteractionModel::Status
ExampleMicrowaveOvenControlDelegate::HandleSetCookingParametersCallback(uint8_t cookMode, uint32_t cookTime,
uint8_t powerSetting)
ExampleMicrowaveOvenControlDelegate::HandleSetCookingParametersCallback(uint8_t cookMode, uint32_t cookTime, uint8_t powerSetting)
{
return (*mHandleSetCookingParametersCallback.get())(cookMode, cookTime, powerSetting);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ class Delegate
* @return Returns the Interaction Model status code which was user determined in the business logic
*/
virtual Protocols::InteractionModel::Status HandleSetCookingParametersCallback(uint8_t cookMode, uint32_t cookTime,
uint8_t powerSetting) = 0;
uint8_t powerSetting) = 0;

/**
* @brief Handle Command Callback in application: AddMoreTime
Expand Down

0 comments on commit d53aa52

Please sign in to comment.