VLCMovieViewController.h 445 B

12345678910111213141516171819202122
  1. //
  2. // VLCDetailViewController.h
  3. // AspenProject
  4. //
  5. // Created by Felix Paul Kühne on 27.02.13.
  6. // Copyright (c) 2013 VideoLAN. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface VLCMovieViewController : UIViewController <UISplitViewControllerDelegate>
  10. {
  11. VLCMediaPlayer *_mediaPlayer;
  12. UIView *_movieView;
  13. }
  14. @property (nonatomic, retain) IBOutlet UIView * movieView;
  15. @property (strong, nonatomic) MLFile *mediaItem;
  16. @end