mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-18 11:38:08 +00:00
24 lines
638 B
Objective-C
24 lines
638 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
|