blob: 7018b8f8e1b43b988a2d0e78a26370d9134dfbe8 (
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
26
27
|
//
// BP5SController.h
// iHealthSDKStatic
//
// Created by Realank on 2017/7/7.
// Copyright © 2017年 daiqingquan. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "BPMacroFile.h"
/**
BP5S controller class
*/
@interface BP5SController : BPController
/**
* Initialize controller class
*/
+(instancetype)sharedController;
/**
* Get all BP5S instance,Access control class instance after receiving BP3LConnectNoti then use instance to call BP5S related communication methods.
*/
-(NSArray *)getAllCurrentInstance;
@end
|