linphone-iphone/Classes/LinphoneUI/UICallPausedCell.h
Gautier Pelloux-Prayer 6496e27a3c pause call
2015-09-11 14:18:03 +02:00

23 lines
523 B
Objective-C

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