blob: 9a811ae3a0c3d20af1d3bbac60e111e89ca8f4f1 (
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
28
29
30
31
32
|
//
// HS3Controller.h
// testShareCommunication
//
// Created by daiqingquan on 13-10-10.
// Copyright (c) 2013年 my. All rights reserved.
//
#import <Foundation/Foundation.h>
/**
HS3Controller
*/
@interface HS3Controller : NSObject{
NSMutableArray *hs3Array;
}
/**
* Initialize HS3 controller class
*/
+(HS3Controller *)shareIHHs3Controller;
/**
* Get all scale instance,use hsInstance to call HS related communication methods.
*/
-(NSArray *)getAllCurrentHS3Instace;
@end
|