mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
19 lines
342 B
Objective-C
19 lines
342 B
Objective-C
//
|
|
// HistoryDetailsTableViewController.h
|
|
// linphone
|
|
//
|
|
// Created by Gautier Pelloux-Prayer on 27/07/15.
|
|
//
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "linphone/linphonecore.h"
|
|
|
|
@interface HistoryDetailsTableView : UITableViewController {
|
|
@private
|
|
NSMutableArray *callLogs;
|
|
}
|
|
- (void)loadDataForAddress:(const LinphoneAddress *)peer;
|
|
|
|
@end
|