Skip to content

Commit

Permalink
InvokeCommand template comment
Browse files Browse the repository at this point in the history
  • Loading branch information
sharadb-amazon committed Dec 20, 2023
1 parent 1e21c2b commit 950b8cf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions examples/tv-casting-app/tv-casting-common/core/Cluster.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ class BaseCluster

void * GetAttribute(const chip::AttributeId attributeId) { return mAttributes[attributeId]; }

/*template <typename RequestType>
void InvokeCommand(RequestType request, void * context, clusters::SuccessCallbackType<typename RequestType::ResponseType> successCb,
clusters::FailureCallbackType failureCb, const chip::Optional<uint16_t> & timedInvokeTimeoutMs);*/

protected:
void RegisterAttribute(const chip::AttributeId attributeId, void * attribute) { mAttributes[attributeId] = attribute; }

Expand Down

0 comments on commit 950b8cf

Please sign in to comment.