mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-19 09:41:29 +00:00
29 lines
521 B
Objective-C
29 lines
521 B
Objective-C
#import <LegacyComponents/TGDocumentAttributeAnimated.h>
|
|
|
|
@implementation TGDocumentAttributeAnimated
|
|
|
|
- (instancetype)initWithKeyValueCoder:(PSKeyValueCoder *)__unused coder
|
|
{
|
|
return [self init];
|
|
}
|
|
|
|
- (void)encodeWithKeyValueCoder:(PSKeyValueCoder *)__unused coder
|
|
{
|
|
}
|
|
|
|
- (instancetype)initWithCoder:(NSCoder *)__unused aDecoder
|
|
{
|
|
return [self init];
|
|
}
|
|
|
|
- (void)encodeWithCoder:(NSCoder *)__unused aCoder
|
|
{
|
|
}
|
|
|
|
- (BOOL)isEqual:(id)object
|
|
{
|
|
return [object isEqual:[TGDocumentAttributeAnimated class]];
|
|
}
|
|
|
|
@end
|