SBSEncodingRange.h
Go to the documentation of this file.
1 //
2 // SBSEncodingRange.h
3 // ScanditBarcodeScanner
4 //
5 // Created by Tibor Molnár on 13/07/2018.
6 // Copyright © 2018 Scandit AG. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 NS_ASSUME_NONNULL_BEGIN
12 
19 @interface SBSEncodingRange : NSObject
20 
21 @property (nonatomic, readonly, strong) NSString *encoding;
22 @property (nonatomic, readonly) NSUInteger start;
23 @property (nonatomic, readonly) NSUInteger end;
24 
34 - (instancetype)initWithEncoding:(NSString *)encoding start:(NSUInteger)start end:(NSUInteger)end;
35 
36 @end
37 
38 NS_ASSUME_NONNULL_END
NSUInteger end
Definition: SBSEncodingRange.h:23
NSString * encoding
Definition: SBSEncodingRange.h:21
NSUInteger start
Definition: SBSEncodingRange.h:22
An encoding range for the barcode generator. Specifies the encoding and the start and end index of th...
Definition: SBSEncodingRange.h:19