18 lines
409 B
Objective-C
18 lines
409 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class ConsentManagerErrorBridge;
|
|
|
|
FOUNDATION_EXPORT ConsentManagerErrorBridge *GetConsentManagerException(void);
|
|
FOUNDATION_EXPORT const char *GetReason(void);
|
|
FOUNDATION_EXPORT int GetCode(void);
|
|
|
|
@interface ConsentManagerErrorBridge : NSObject
|
|
|
|
- (instancetype)initWithCode:(NSInteger)code reason:(NSString *)reason;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|