VLCPlaylistViewController.h 723 B

123456789101112131415161718192021222324252627
  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. #import "AQGridView.h"
  10. @class VLCMovieViewController;
  11. @class VLCAboutViewController;
  12. @interface VLCPlaylistViewController : UIViewController <AQGridViewDataSource, AQGridViewDelegate, UITableViewDataSource, UITableViewDelegate>
  13. @property (nonatomic, strong) VLCMovieViewController *movieViewController;
  14. @property (nonatomic, strong) VLCAboutViewController *aboutViewController;
  15. @property (nonatomic, strong) IBOutlet UITableView *tableView;
  16. @property (nonatomic, strong) IBOutlet AQGridView *gridView;
  17. - (void)updateViewContents;
  18. @end