summaryrefslogtreecommitdiff
path: root/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/BGController.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/BGController.h')
-rw-r--r--libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/BGController.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/BGController.h b/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/BGController.h
new file mode 100644
index 0000000..9675047
--- /dev/null
+++ b/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/BGController.h
@@ -0,0 +1,32 @@
1//
2// BGController.h
3// iHealthDemoCode
4//
5// Created by Realank on 2017/1/4.
6// Copyright © 2017年 zhiwei jing. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11/**
12 Base class of BG controller
13 */
14@interface BGController : NSObject{
15 //区分设备
16 NSString* deviceName;
17 NSNumber* bluetoothType;
18 //发送通知
19 NSString* deviceConnectNotiName;
20 NSString* deviceDisconnectNotiName;
21 //创建实例
22 Class DeviceClass;
23}
24
25-(instancetype) initUniqueInstance;
26
27/**
28 * Get all BG3 instance,Access control class instance after receiving kNotificationNameBG3ConnectSuccess, then use instance to call BG3 related communication methods.
29 */
30-(NSArray *)allConnectedInstance;
31
32@end