forked from mirrors/linphone-iphone
21 lines
471 B
Objective-C
21 lines
471 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 withURL:(NSURL *)url forChatRoom:(LinphoneChatRoom *)chatRoom withQuality:(float)quality;
|
|
- (void)cancel;
|
|
- (BOOL)download:(LinphoneChatMessage *)message;
|
|
- (void)stopAndDestroy;
|
|
|
|
@property() LinphoneChatMessage *message;
|
|
@end
|