Deprecation warning

Please note that this is outdated documentation for an older release of the Scandit Barcode Scanner SDK.

We encourage you to migrate to 6.x and take advantage of our latest / advanced features and improved performance.

You'll find the updated documentation at: Data Capture SDK Documentation for iOS

SBSCommon.h
Go to the documentation of this file.
1 // ScanditSDKCommon.h
2 // ScanditBarcodeScanner
3 //
4 // Created by Marco Biasini on 29/05/15.
5 // Copyright (c) 2015 Scandit AG. All rights reserved.
6 //
7 
8 
9 #define SBS_DEPRECATED __attribute__((deprecated))
10 
11 // we can't use NS_ENUM directly, but rather have to use a macro that gets replaced with
12 // the proper meaning when generating the documentation.
13 
15 #if defined(SBS_GENERATE_DOCS)
16 # define SBS_ENUM_BEGIN(name) typedef enum
17 # define SBS_ENUM_END(name) name
18 # define SBS_DESIGNATED_INITIALIZER
19 # define SBS_NOT_AVAILABLE_IN_SWIFT
20 #else
21 # define SBS_ENUM_BEGIN(name) typedef NS_ENUM(NSInteger, name)
22 # define SBS_ENUM_END(name)
23 # define SBS_DESIGNATED_INITIALIZER NS_DESIGNATED_INITIALIZER
24 # if __has_attribute(swift_private)
25 # define SBS_NOT_AVAILABLE_IN_SWIFT __attribute__((swift_private))
26 # endif
27 #endif
28 
30 
42 
44 
45 
52 
54 
55 
76  LONG_RANGE SBS_DEPRECATED SBS_NOT_AVAILABLE_IN_SWIFT = SBSWorkingRangeLong,
82 
84 
96 
103 
105 
106 
130 
131 
137 FOUNDATION_EXPORT NSString *SBSErrorDomain;
138 
148 
Definition: SBSCommon.h:97
Definition: SBSCommon.h:37
SBSError
enumeration of various error codes
Definition: SBSCommon.h:142
Definition: SBSCommon.h:100
SBSOrientation
Definition: SBSCommon.h:46
Definition: SBSCommon.h:128
Definition: SBSCommon.h:47
Definition: SBSCommon.h:75
Definition: SBSCommon.h:123
SBSCameraFacingDirection
Definition: SBSCommon.h:36
Definition: SBSCommon.h:92
Definition: SBSCommon.h:91
Definition: SBSCommon.h:48
#define SBS_ENUM_END(name)
Definition: SBSCommon.h:17
SBSGuiStyle
Enumeration of different GUI styles.
Definition: SBSCommon.h:112
Definition: SBSCommon.h:98
Definition: SBSCommon.h:93
Definition: SBSCommon.h:95
Definition: SBSCommon.h:117
Definition: SBSCommon.h:50
#define SBS_DEPRECATED
Definition: SBSCommon.h:9
Definition: SBSCommon.h:94
SBSMsiPlesseyChecksumType
Enumeration of different MSI Checksums.
Definition: SBSCommon.h:90
Definition: SBSCommon.h:40
FOUNDATION_EXPORT NSString * SBSErrorDomain
Error domain for the ScanditBarcodeScanner framework.
Definition: SBSCommon.h:137
#define SBS_NOT_AVAILABLE_IN_SWIFT
Definition: SBSCommon.h:19
Definition: SBSCommon.h:99
An invalid argument has been passed to a method/function.
Definition: SBSCommon.h:146
SBSWorkingRange
Definition: SBSCommon.h:61
Definition: SBSCommon.h:38
Definition: SBSCommon.h:76
Definition: SBSCommon.h:80
Definition: SBSCommon.h:74
Definition: SBSCommon.h:68
Definition: SBSCommon.h:49
Definition: SBSCommon.h:39
Definition: SBSCommon.h:101
#define SBS_ENUM_BEGIN(name)
Definition: SBSCommon.h:16