linphone-iphone/Classes/CallDelegate.m
2011-11-08 14:43:59 +01:00

20 lines
452 B
Objective-C

//
// CallDelegate.m
// linphone
//
// Created by Pierre-Eric Pelloux-Prayer on 03/11/11.
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
//
#import "CallDelegate.h"
@implementation CallDelegate
@synthesize call;
@synthesize delegate;
-(void) actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex {
[delegate actionSheet:actionSheet clickedButtonAtIndex:buttonIndex withUserDatas:call];
}
@end