SBSScanCaseSession.h
Go to the documentation of this file.
1 //
2 // SBSScanCaseSession.h
3 // ScanditBarcodeScanner
4 //
5 // Created by Luca Torella on 17/02/16.
6 // Copyright © 2016 Scandit AG. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 @class SBSCode;
12 
36 @interface SBSScanCaseSession : NSObject
37 
41 @property (nonnull, readonly, nonatomic, copy) NSArray<SBSCode *> *newlyRecognizedCodes;
42 
47 @property (nonnull, readonly, nonatomic, copy) NSArray<SBSCode *> *newlyLocalizedCodes;
48 
62 @property (nonnull, readonly, nonatomic, copy) NSArray<SBSCode *> *allRecognizedCodes;
63 
71 - (void)clear;
72 
73 @end
NSArray< SBSCode * > * allRecognizedCodes
Returns the list of barcodes (data, symbology) that have been decoded (recognized) in this session...
Definition: SBSScanCaseSession.h:62
Represents a recognized/localized barcode/2D code.
Definition: SBSCode.h:259
Holds all barcodes that were decoded in the current session.
Definition: SBSScanCaseSession.h:36
void clear()
Remove all codes from the scan session.
NSArray< SBSCode * > * newlyLocalizedCodes
A new copy of the list of barcodes that have been localized but not recognized in the last frame...
Definition: SBSScanCaseSession.h:47
NSArray< SBSCode * > * newlyRecognizedCodes
A new copy of the list of barcodes that have been successfully decoded in the last frame...
Definition: SBSScanCaseSession.h:41