SBSCharacterSet.h
Go to the documentation of this file.
1 //
2 // SBSCharacterSet.h
3 // ScanditBarcodeScanner
4 //
5 // Created by Luca Torella on 07.04.17.
6 // Copyright © 2017 Scandit AG. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 #import "SBSCommon.h"
11 
12 @interface SBSCharacterSet : NSObject <NSCopying>
13 
14 + (nonnull SBSCharacterSet *)characterSetWithString:(nonnull NSString *)whitelist;
15 - (nonnull instancetype)initWithString:(nonnull NSString *)whitelist SBS_DESIGNATED_INITIALIZER;
16 
17 @end
Definition: SBSCharacterSet.h:12