1 //
2 //  mediastreamViewController.h
3 //  mediastream
4 //
5 //  Created by jehan on 15/06/11.
6 //  Copyright 2011 __MyCompanyName__. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
10 
11 @interface mediastreamViewController : UIViewController {
12     UIView* portraitImageView;
13 	UIView* portraitPreview;
14 	UIView* landscapeImageView;
15 	UIView* landscapePreview;
16 	UIView* portrait;
17 	UIView* landscape;
18 	}
19 
20 
21 @property (nonatomic, retain) IBOutlet UIView* portraitImageView;
22 @property (nonatomic, retain) IBOutlet UIView* portraitPreview;
23 @property (nonatomic, retain) IBOutlet UIView* landscapeImageView;
24 @property (nonatomic, retain) IBOutlet UIView* landscapePreview;
25 @property (nonatomic, retain) IBOutlet UIView* portrait;
26 @property (nonatomic, retain) IBOutlet UIView* landscape;
27 @end
28