blob: 8e4510f5f02ff7eef9b793ef97e8240a7156cc89 [file] [log] [blame]
/*
*
* Copyright (c) 2014-2017 Nest Labs, Inc.
* 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 <BuildConfig.h>
#if CONFIG_NETWORK_LAYER_BLE
#include <BleLayer/BleApplicationDelegate.h>
#include "AndroidBleApplicationDelegate.h"
#include <stddef.h>
AndroidBleApplicationDelegate::AndroidBleApplicationDelegate():
NotifyWeaveConnectionClosedCb(NULL)
{
}
void AndroidBleApplicationDelegate::NotifyWeaveConnectionClosed(BLE_CONNECTION_OBJECT connObj)
{
if (NotifyWeaveConnectionClosedCb)
{
NotifyWeaveConnectionClosedCb(connObj);
}
}
void AndroidBleApplicationDelegate::SetNotifyWeaveConnectionClosedCallback(NotifyWeaveConnectionClosedCallback cb)
{
NotifyWeaveConnectionClosedCb = cb;
}
#endif /* CONFIG_NETWORK_LAYER_BLE */