VLCPlaylistViewController.h 492 B

12345678910111213141516171819202122
  1. //
  2. // VLCMasterViewController.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. @class VLCMovieViewController;
  10. @class VLCAboutViewController;
  11. @interface VLCPlaylistViewController : UITableViewController
  12. @property (strong, nonatomic) VLCMovieViewController *movieViewController;
  13. @property (strong, nonatomic) VLCAboutViewController *aboutViewController;
  14. - (void)updateViewContents;
  15. @end