-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from PDF417/jenkins/stable-build
Jenkins/stable build
- Loading branch information
Showing
526 changed files
with
29,045 additions
and
4,411 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file was deleted.
Oops, something went wrong.
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// | ||
// MBLicenseError.h | ||
// MicroblinkDev | ||
// | ||
// Created by Mijo Gracanin on 23/09/2020. | ||
// | ||
|
||
#ifndef MBLicenseError_h | ||
#define MBLicenseError_h | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
extern NSString * const MBLicenseErrorNotification; | ||
|
||
typedef NS_ENUM(NSInteger, MBLicenseError) { | ||
MBLicenseErrorNetworkRequired, | ||
MBLicenseErrorUnableToDoRemoteLicenceCheck, | ||
MBLicenseErrorLicenseIsLocked, | ||
MBLicenseErrorLicenseCheckFailed | ||
}; | ||
|
||
typedef void(^MBLicenseErrorBlock)(MBLicenseError licenseError); | ||
|
||
#endif /* MBLicenseError_h */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// | ||
// MBLogger.h | ||
// PhotoMathFramework | ||
// | ||
// Created by Marko Mihovilić on 23/03/16. | ||
// Copyright © 2016 Microblink Ltd. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
#import "MBMicroblinkDefines.h" | ||
|
||
typedef NS_ENUM(NSInteger, MBLogLevel) { | ||
MBLogLevelError, | ||
MBLogLevelWarning, | ||
MBLogLevelInfo, | ||
MBLogLevelDebug, | ||
MBLogLevelVerbose | ||
}; | ||
|
||
@protocol MBLoggerDelegate <NSObject> | ||
|
||
@optional | ||
|
||
- (void)log:(MBLogLevel)level message:(const char *)message; | ||
- (void)log:(MBLogLevel)level format:(const char *)format arguments:(const char *)arguments; | ||
|
||
@end | ||
|
||
MB_CLASS_AVAILABLE_IOS(8.0) @interface MBLogger : NSObject | ||
|
||
@property (nonatomic) id<MBLoggerDelegate> delegate; | ||
|
||
+ (instancetype)sharedInstance NS_SWIFT_NAME(shared()); | ||
|
||
- (void)disableMicroblinkLogging; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.