mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
23 lines
609 B
Objective-C
23 lines
609 B
Objective-C
//
|
|
// FileTransferDelegate.h
|
|
// linphone
|
|
//
|
|
// Created by Gautier Pelloux-Prayer on 10/06/15.
|
|
//
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "LinphoneManager.h"
|
|
|
|
@interface FileTransferDelegate : NSObject
|
|
|
|
- (void)upload:(UIImage *)image withassetId:(NSString *)phAssetId forChatRoom:(LinphoneChatRoom *)chatRoom withQuality:(float)quality;
|
|
- (void)uploadFile:(NSData *)data forChatRoom:(LinphoneChatRoom *)chatRoom withUrl:(NSURL *)url;
|
|
- (void)cancel;
|
|
- (BOOL)download:(LinphoneChatMessage *)message;
|
|
- (void)stopAndDestroy;
|
|
|
|
@property() LinphoneChatMessage *message;
|
|
@property() NSString *text;
|
|
@end
|