blob: 701393af9a03c02fc915429d64d2c66302737a66 (
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
|
//
// AM3Controller.h
// testShareCommunication
//
// Created by daiqingquan on 13-10-15.
// Copyright (c) 2013年 my. All rights reserved.
//
#import <Foundation/Foundation.h>
/**
AM3Controller
*/
@interface AM3Controller : NSObject
/**
* Initialize AM3 controller class
*/
+(AM3Controller *)shareIHAM3Controller;
/**
* Access control class instance after receiving AM3ConnectNoti, then use instance to call AM3 related communication methods
*/
-(NSArray *)getAllCurrentAM3Instace;
@end
|