mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-05 20:22:15 +00:00
15 lines
342 B
Objective-C
15 lines
342 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import "HockeySDKNullability.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@interface BITOrderedDictionary : NSMutableDictionary {
|
|
NSMutableDictionary *dictionary;
|
|
NSMutableArray *order;
|
|
}
|
|
|
|
- (instancetype)initWithCapacity:(NSUInteger)numItems;
|
|
- (void)setObject:(id)anObject forKey:(id)aKey;
|
|
|
|
@end
|
|
NS_ASSUME_NONNULL_END
|