nRF Connect SDK API 0.1.0
Loading...
Searching...
No Matches
CHIPClusters.h
Go to the documentation of this file.
1/*
2 *
3 * Copyright (c) 2022 Project CHIP Authors
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18// THIS FILE IS GENERATED BY ZAP
19#pragma once
20
21#include <app-common/zap-generated/ids/Clusters.h>
22#include <app-common/zap-generated/ids/Commands.h>
23
24#include <controller/CHIPCluster.h>
25#include <lib/core/CHIPCallback.h>
26#include <lib/support/Span.h>
27
28namespace chip
29{
30namespace Controller
31{
32
33 class DLL_EXPORT IdentifyCluster : public ClusterBase {
34 public:
35 IdentifyCluster(Messaging::ExchangeManager &exchangeManager, const SessionHandle &session,
36 EndpointId endpoint)
37 : ClusterBase(exchangeManager, session, endpoint)
38 {
39 }
41 };
42
43 class DLL_EXPORT OnOffCluster : public ClusterBase {
44 public:
45 OnOffCluster(Messaging::ExchangeManager &exchangeManager, const SessionHandle &session,
46 EndpointId endpoint)
47 : ClusterBase(exchangeManager, session, endpoint)
48 {
49 }
51 };
52
53 class DLL_EXPORT OtaSoftwareUpdateProviderCluster : public ClusterBase {
54 public:
55 OtaSoftwareUpdateProviderCluster(Messaging::ExchangeManager &exchangeManager,
56 const SessionHandle &session, EndpointId endpoint)
57 : ClusterBase(exchangeManager, session, endpoint)
58 {
59 }
61 };
62
63} // namespace Controller
64} // namespace chip
~IdentifyCluster()
Definition: CHIPClusters.h:40
IdentifyCluster(Messaging::ExchangeManager &exchangeManager, const SessionHandle &session, EndpointId endpoint)
Definition: CHIPClusters.h:35
Definition: CHIPClusters.h:33
~OnOffCluster()
Definition: CHIPClusters.h:50
OnOffCluster(Messaging::ExchangeManager &exchangeManager, const SessionHandle &session, EndpointId endpoint)
Definition: CHIPClusters.h:45
Definition: CHIPClusters.h:43
~OtaSoftwareUpdateProviderCluster()
Definition: CHIPClusters.h:60
OtaSoftwareUpdateProviderCluster(Messaging::ExchangeManager &exchangeManager, const SessionHandle &session, EndpointId endpoint)
Definition: CHIPClusters.h:55
Definition: CHIPClusters.h:29