mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
13 lines
270 B
Objective-C
13 lines
270 B
Objective-C
#import "PSKeyValueCoder.h"
|
|
|
|
@interface PSKeyValueDecoder : PSKeyValueCoder
|
|
|
|
- (instancetype)init;
|
|
- (instancetype)initWithData:(NSData *)data;
|
|
|
|
- (void)resetData:(NSData *)data;
|
|
- (void)resetBytes:(uint8_t const *)bytes length:(NSUInteger)length;
|
|
- (void)rewind;
|
|
|
|
@end
|