forked from mirrors/linphone-iphone
25 lines
644 B
Objective-C
25 lines
644 B
Objective-C
//
|
|
// ViewController.h
|
|
// MS2
|
|
//
|
|
// Created by guillaume on 06/05/2015.
|
|
// Copyright (c) 2015 Belldonne Communications. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface ViewController : UIViewController
|
|
|
|
- (IBAction)onStartStreamsClick:(id)sender;
|
|
- (IBAction)changeCamUp:(id)sender;
|
|
- (IBAction)changeCamDown:(id)sender;
|
|
|
|
@property (weak, nonatomic) IBOutlet UIView *remoteView;
|
|
@property (weak, nonatomic) IBOutlet UIView *localView;
|
|
@property (weak, nonatomic) IBOutlet UIButton *startStreamLabel;
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *infoLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *bandwidthLabel;
|
|
|
|
@end
|
|
|