Fix for x86_64 build fail
[platform/upstream/connectedhomeip.git] / src / include / platform / internal / GenericDeviceNetworkProvisioningDelegateImpl.h
1 /*
2  *
3  *    Copyright (c) 2020 Project CHIP Authors
4  *    Copyright (c) 2018 Nest Labs, Inc.
5  *    All rights reserved.
6  *
7  *    Licensed under the Apache License, Version 2.0 (the "License");
8  *    you may not use this file except in compliance with the License.
9  *    You may obtain a copy of the License at
10  *
11  *        http://www.apache.org/licenses/LICENSE-2.0
12  *
13  *    Unless required by applicable law or agreed to in writing, software
14  *    distributed under the License is distributed on an "AS IS" BASIS,
15  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  *    See the License for the specific language governing permissions and
17  *    limitations under the License.
18  */
19
20 #pragma once
21
22 #include <platform/internal/CHIPDeviceLayerInternal.h>
23
24 #include "DeviceNetworkProvisioning.h"
25
26 namespace chip {
27 namespace DeviceLayer {
28 namespace Internal {
29
30 template <class ImplClass>
31 class GenericDeviceNetworkProvisioningDelegateImpl : public DeviceNetworkProvisioningDelegate
32 {
33 public:
34     CHIP_ERROR ProvisionWiFi(const char * ssid, const char * passwd) override;
35     CHIP_ERROR ProvisionThread(DeviceLayer::Internal::DeviceNetworkInfo & threadData) override;
36
37 private:
38     ImplClass * Impl() { return static_cast<ImplClass *>(this); }
39 };
40
41 template <class ImplClass>
42 inline CHIP_ERROR GenericDeviceNetworkProvisioningDelegateImpl<ImplClass>::ProvisionWiFi(const char * ssid, const char * passwd)
43 {
44     return Impl()->_ProvisionWiFiNetwork(ssid, passwd);
45 }
46
47 template <class ImplClass>
48 inline CHIP_ERROR
49 GenericDeviceNetworkProvisioningDelegateImpl<ImplClass>::ProvisionThread(DeviceLayer::Internal::DeviceNetworkInfo & threadData)
50 {
51     return Impl()->_ProvisionThreadNetwork(threadData);
52 }
53
54 } // namespace Internal
55 } // namespace DeviceLayer
56 } // namespace chip