blob: 683f6636e9c431ca5c2facf0ef988bcf62120a7e [file] [log] [blame]
/*
* Copyright (c) 2020 Project CHIP Authors
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#include <core/CHIPConfig.h>
#if CONFIG_NETWORK_LAYER_BLE
#include "AndroidBleApplicationDelegate.h"
#include <stddef.h>
AndroidBleApplicationDelegate::AndroidBleApplicationDelegate() : NotifyChipConnectionClosedCb(NULL) {}
void AndroidBleApplicationDelegate::NotifyChipConnectionClosed(BLE_CONNECTION_OBJECT connObj)
{
if (NotifyChipConnectionClosedCb)
{
NotifyChipConnectionClosedCb(connObj);
}
}
void AndroidBleApplicationDelegate::SetNotifyChipConnectionClosedCallback(NotifyChipConnectionClosedCallback cb)
{
NotifyChipConnectionClosedCb = cb;
}
#endif /* CONFIG_NETWORK_LAYER_BLE */