mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
27 lines
615 B
Objective-C
27 lines
615 B
Objective-C
//
|
|
// CallDelegate.h
|
|
// linphone
|
|
//
|
|
// Created by Pierre-Eric Pelloux-Prayer on 03/11/11.
|
|
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#include "linphonecore.h"
|
|
|
|
|
|
@protocol UIActionSheetCustomDelegate
|
|
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex withUserDatas:(void*) datas;
|
|
@end
|
|
|
|
|
|
@interface CallDelegate : NSObject<UIActionSheetDelegate> {
|
|
|
|
LinphoneCall* call;
|
|
id<UIActionSheetCustomDelegate> delegate;
|
|
}
|
|
|
|
@property (nonatomic) LinphoneCall* call;
|
|
@property (nonatomic, retain) id delegate;
|
|
|
|
@end
|