linphone-ios/Classes/LinphoneUI/UICallConferenceCell.h
Gautier Pelloux-Prayer 4ab45b7aca Conference: add view
2015-10-15 12:14:38 +02:00

22 lines
546 B
Objective-C

//
// UIPausedCallCell.h
// linphone
//
// Created by Gautier Pelloux-Prayer on 11/09/15.
//
//
#import "UIRoundedImageView.h"
#import "LinphoneManager.h"
@interface UICallConferenceCell : UITableViewCell
@property(weak, nonatomic) IBOutlet UIRoundedImageView *avatarImage;
@property(weak, nonatomic) IBOutlet UILabel *nameLabel;
@property(weak, nonatomic) IBOutlet UILabel *durationLabel;
@property(nonatomic, setter=setCall:) LinphoneCall *call;
- (id)initWithIdentifier:(NSString *)identifier;
- (IBAction)onKickClick:(id)sender;
@end