ACS Bluetooth iOS/Mac OS X Library  1.0.0
 All Classes Files Functions Variables Typedefs Enumerator Properties
ABTBluetoothReaderManager.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2014 Advanced Card Systems Ltd. All Rights Reserved.
3  *
4  * This software is the confidential and proprietary information of Advanced
5  * Card Systems Ltd. ("Confidential Information"). You shall not disclose such
6  * Confidential Information and shall use it only in accordance with the terms
7  * of the license agreement you entered into with ACS.
8  */
9 
10 #import <Foundation/Foundation.h>
11 
12 @class CBPeripheral;
13 @class ABTBluetoothReader;
15 
22 @interface ABTBluetoothReaderManager : NSObject
23 
27 @property (nonatomic, weak) id<ABTBluetoothReaderManagerDelegate> delegate;
28 
36 - (void)detectReaderWithPeripheral:(CBPeripheral *)peripheral;
37 
38 @end
39 
45 @optional
46 
54 - (void)bluetoothReaderManager:(ABTBluetoothReaderManager *)bluetoothReaderManager didDetectReader:(ABTBluetoothReader *)reader peripheral:(CBPeripheral *)peripheral error:(NSError *)error;
55 
56 @end
id< ABTBluetoothReaderManagerDelegate > delegate
The delegate object specified to receive the Bluetooth reader manager events.
Definition: ABTBluetoothReaderManager.h:27
The ABTBluetoothReaderManager class detects ACS Bluetooth readers.
Definition: ABTBluetoothReaderManager.h:22
The ABTBluetoothReader class represents ACS Bluetooth readers.
Definition: ABTBluetoothReader.h:83
The ABTBluetoothReaderManagerDelegate protocol defines the response sent to a delegate of ABTBluetoot...
Definition: ABTBluetoothReaderManager.h:44