1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-04 02:17:51 +01:00
Telegram/legacy/TL/TLMetaRpc.mm

39 lines
511 B
Plaintext
Raw Normal View History

2015-10-01 18:19:52 +02:00
#import "TLMetaRpc.h"
@implementation TLMetaRpc
- (Class)responseClass
{
return nil;
}
- (int)impliedResponseSignature
{
return 0;
}
- (int)layerVersion
{
return 0;
}
- (int32_t)TLconstructorSignature
{
return 0xabcdef;
}
- (int32_t)TLconstructorName
{
return 0xabcdef;
}
- (id<TLObject>)TLbuildFromMetaObject:(std::tr1::shared_ptr<TLMetaObject>)__unused metaObject
{
return nil;
}
- (void)TLfillFieldsWithValues:(std::map<int32_t, TLConstructedValue> *)__unused values
{
}
@end