SBSMatrixScanDelegate.h
Go to the documentation of this file.
1 //
2 // SBSMatrixScanDelegate.h
3 // ScanditBarcodeScanner
4 //
5 // Created by Luca Torella on 02.03.18.
6 // Copyright © 2018 Scandit. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
12 @class SBSFrame;
13 @class SBSTrackedCode;
14 
15 NS_ASSUME_NONNULL_BEGIN
16 
21 @protocol SBSMatrixScanDelegate <NSObject>
22 
28 - (void)matrixScanHandler:(SBSMatrixScanHandler *)handler didProcessFrame:(SBSFrame *)frame;
29 
36 - (BOOL)matrixScanHandler:(SBSMatrixScanHandler *)handler shouldRejectCode:(SBSTrackedCode *)code;
37 
38 @end
39 
40 NS_ASSUME_NONNULL_END
An high-level abstraction of the Scandit Matrix Scan.
Definition: SBSMatrixScanHandler.h:25
The protocol used by SBSMatrixScanHandler instance.
Definition: SBSMatrixScanDelegate.h:21
An extended abstraction of a frame that is being processed by the SBSMatrixScanHandler.
Definition: SBSFrame.h:28
Represents a recognized/localized barcode/2D code that is being tracked over multiple frames...
Definition: SBSTrackedCode.h:18