blob: 36e80fdfd032cf28d33ba7655aa912d50c1af992 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
//
// ABPMController.h
// iHealthSDKStatic
//
// Created by Realank on 2017/9/26.
// Copyright © 2017年 ihealthSDK. All rights reserved.
//
#import "BPController.h"
/**
ABPM controller class
*/
@interface ABPMController : BPController
/**
* Initialize ABPM controller class
*/
+ (ABPMController *)sharedController;
/**
* Get all ABPM instance,Access control class instance after receiving BP3LConnectNoti then use instance to call ABPM related communication methods.
*/
- (NSArray *)allConnectedInstance;
@end
|