1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-02 09:27:55 +01:00
Telegram/legacy/TL/TLCompressedObject.mm
2015-10-01 19:19:52 +03:00

27 lines
438 B
Plaintext

#import "TLCompressedObject.h"
@implementation TLCompressedObject
@synthesize compressedData = _compressedData;
- (int32_t)TLconstructorSignature
{
return 0x3072cfa1;
}
- (int32_t)TLconstructorName
{
return 0;
}
- (id<TLObject>)TLbuildFromMetaObject:(std::tr1::shared_ptr<TLMetaObject>)__unused metaObject
{
return nil;
}
- (void)TLfillFieldsWithValues:(std::map<int32_t, TLConstructedValue> *)__unused values
{
}
@end