blob: f4c0e75b70e2c6056dbfb570554bc1644d19a451 (
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
|
//
// BP3LViewController.h
// testShareCommunication
//
// Created by my on 14/10/13.
// Copyright (c) 2013年 my. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "BPMacroFile.h"
/**
BP3L controller class
*/
@interface BP3LController : BPController
/**
* Initialize BP3L controller class
*/
+(BP3LController *)shareBP3LController;
/**
* Get all BP3L instance,Access control class instance after receiving BP3LConnectNoti then use instance to call BP3L related communication methods.
*/
-(NSArray *)getAllCurrentBP3LInstace;
@end
|