mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
21 lines
361 B
Objective-C
21 lines
361 B
Objective-C
//
|
|
// MasterViewController.h
|
|
// LinphoneTester
|
|
//
|
|
// Created by guillaume on 28/05/2014.
|
|
//
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NSMutableArray* lastLogs;
|
|
NSString* const kLogsUpdateNotification;
|
|
|
|
@class DetailViewController;
|
|
|
|
@interface MasterViewController : UITableViewController
|
|
|
|
@property (strong, nonatomic) DetailViewController *detailViewController;
|
|
|
|
@end
|
|
|