blob: 94e9b7b1d64f499b60e75de273e2ab275b9b8818 (
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
|
//
// PO3Controller.h
// testShareCommunication
//
// Created by daiqingquan on 13-11-29.
// Copyright (c) 2013年 my. All rights reserved.
//
#import <Foundation/Foundation.h>
/**
PO3Controller
*/
@interface PO3Controller : NSObject
/**
* Initialize PO3 controller class
*/
+(PO3Controller *)shareIHPO3Controller;
/**
* Access control class instance after receiving PO3ConnectNoti, then use instance to call PO3 related communication methods
*/
-(NSArray *)getAllCurrentPO3Instace;
@end
|