mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 19:18:06 +00:00
20 lines
339 B
Objective-C
20 lines
339 B
Objective-C
//
|
|
// SideMenuViewController.h
|
|
// linphone
|
|
//
|
|
// Created by Gautier Pelloux-Prayer on 28/07/15.
|
|
//
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "SideMenuTableView.h"
|
|
#import "PhoneMainView.h"
|
|
|
|
@interface CallSideMenuView : UIViewController
|
|
|
|
@property(weak, nonatomic) IBOutlet UILabel *statsLabel;
|
|
|
|
- (IBAction)onLateralSwipe:(id)sender;
|
|
|
|
@end
|