SBSScanCaseDelegate.h
Go to the documentation of this file.
1 //
2 // SBSScanCaseDelegate.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 #import "SBSScanCaseState.h"
11 
13 
26 
39 - (void)didInitializeScanCase:(nonnull SBSScanCase *)scanCase;
40 
60 - (SBSScanCaseState)scanCase:(nonnull SBSScanCase *)scanCase
61  didScan:(nonnull SBSScanCaseSession *)session;
62 
75 - (void)scanCase:(nonnull SBSScanCase *)scanCase
76  didChangeState:(SBSScanCaseState)state
77  reason:(SBSScanCaseStateChangeReason)reason;
78 
79 @end
Holds all barcodes that were decoded in the current session.
Definition: SBSScanCaseSession.h:36
SBSScanCaseState
Definition: SBSScanCaseState.h:18
Start a scanner for the Scandit case.
Definition: SBSScanCase.h:43
SBSScanCaseStateChangeReason
Definition: SBSScanCaseState.h:39
Calls the Protocol for events fired by SBSScanCase, e.g. when new codes are scanned.
Definition: SBSScanCaseDelegate.h:25