diff options
Diffstat (limited to 'libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/ABIController.h')
| -rw-r--r-- | libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/ABIController.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/ABIController.h b/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/ABIController.h new file mode 100644 index 0000000..5163aa0 --- /dev/null +++ b/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/ABIController.h | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | // | ||
| 2 | // ABIController.h | ||
| 3 | // iHealthDemoCode | ||
| 4 | // | ||
| 5 | // Created by zhiwei jing on 14-11-18. | ||
| 6 | // Copyright (c) 2014年 zhiwei jing. All rights reserved. | ||
| 7 | // | ||
| 8 | |||
| 9 | #import <Foundation/Foundation.h> | ||
| 10 | #import "ABI.h" | ||
| 11 | |||
| 12 | /** | ||
| 13 | ABI controller class | ||
| 14 | */ | ||
| 15 | @interface ABIController : NSObject | ||
| 16 | |||
| 17 | /** | ||
| 18 | * Initialize ABI controller class | ||
| 19 | */ | ||
| 20 | +(ABIController *)shareABIController; | ||
| 21 | |||
| 22 | /** | ||
| 23 | * Get ABI instance,Access control class instance after receiving ABIConnectNoti/ArmConnectNoti, then use this instance to call ABI/ABI-Arm related communication methods. | ||
| 24 | * You can use hasLegMonitor property to distinguish whether connecting both arm&leg or only arm | ||
| 25 | */ | ||
| 26 | -(ABI *)currentInstance; | ||
| 27 | |||
| 28 | @end | ||
