diff --git a/examples/tv-casting-app/tv-casting-common/core/Cluster.h b/examples/tv-casting-app/tv-casting-common/core/Cluster.h index ce1a2fe3b7c4ff..37b105e1ea08ba 100644 --- a/examples/tv-casting-app/tv-casting-common/core/Cluster.h +++ b/examples/tv-casting-app/tv-casting-common/core/Cluster.h @@ -54,6 +54,10 @@ class BaseCluster void * GetAttribute(const chip::AttributeId attributeId) { return mAttributes[attributeId]; } + /*template + void InvokeCommand(RequestType request, void * context, clusters::SuccessCallbackType successCb, + clusters::FailureCallbackType failureCb, const chip::Optional & timedInvokeTimeoutMs);*/ + protected: void RegisterAttribute(const chip::AttributeId attributeId, void * attribute) { mAttributes[attributeId] = attribute; }