linphone-ios/submodules/MS2/MS2/ViewController.h
2015-05-07 14:50:27 +02:00

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