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