mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-21 21:14:51 +00:00
19 lines
380 B
Objective-C
19 lines
380 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@class TGLocalization;
|
|
|
|
@protocol LegacyComponentsGlobalsProvider <NSObject>
|
|
|
|
- (TGLocalization *)effectiveLocalization;
|
|
- (void)log:(NSString *)format :(va_list)args;
|
|
|
|
@end
|
|
|
|
@interface LegacyComponentsGlobals : NSObject
|
|
|
|
+ (void)setProvider:(id<LegacyComponentsGlobalsProvider>)provider;
|
|
+ (id<LegacyComponentsGlobalsProvider>)provider;
|
|
|
|
@end
|
|
|