blob: e7f200e47af00d6e6eecd791cf4d78db6f3dc562 [file] [log] [blame]
/*
*
* Copyright (c) 2015-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.
*/
/**
* @file
* This file provides defines non-public portion of NLWeaveDeviceManager interface
*
*/
#include <Weave/Core/WeaveCore.h>
#import "NLWeaveDeviceManager.h"
#import "NLWeaveBleDelegate.h"
@interface NLWeaveDeviceManager ()
@property (strong) PreparationCompleteHandler BleConnectionPreparationCompleteHandler;
- (instancetype)init:(NSString*)name
weaveWorkQueue:(dispatch_queue_t)weaveWorkQueue
appCallbackQueue:(dispatch_queue_t)appCallbackQueue
exchangeMgr:(nl::Weave::WeaveExchangeManager*)exchangeMgr
securityMgr:(nl::Weave::WeaveSecurityManager *)securityMgr
NS_DESIGNATED_INITIALIZER;
-(NSString *)statusReportToString:(NSUInteger)profileId statusCode:(NSInteger)statusCode;
@end