session-ios/Signal/src/Models/TSMessageAdapaters/TSPhotoAdapter.h

18 lines
441 B
C
Raw Normal View History

2014-12-18 00:00:10 +01:00
// Created by Frederic Jacobs on 17/12/14.
// Copyright (c) 2014 Open Whisper Systems. All rights reserved.
#import <Foundation/Foundation.h>
#import <JSQMessagesViewController/JSQPhotoMediaItem.h>
2014-12-21 12:52:42 +01:00
#import "TSAttachmentStream.h"
2014-12-18 00:00:10 +01:00
@interface TSPhotoAdapter : JSQPhotoMediaItem
2014-12-18 00:00:10 +01:00
- (instancetype)initWithAttachment:(TSAttachmentStream *)attachment;
2014-12-18 00:00:10 +01:00
- (BOOL)isImage;
- (BOOL)isAudio;
- (BOOL)isVideo;
@property NSString *attachmentId;
2014-12-18 00:00:10 +01:00
@end