123456789101112131415161718192021222324252627 |
- //
- // VLCMasterViewController.h
- // AspenProject
- //
- // Created by Felix Paul Kühne on 27.02.13.
- // Copyright (c) 2013 VideoLAN. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "AQGridView.h"
- @class VLCMovieViewController;
- @class VLCAboutViewController;
- @interface VLCPlaylistViewController : UIViewController <AQGridViewDataSource, AQGridViewDelegate, UITableViewDataSource, UITableViewDelegate>
- @property (nonatomic, retain) VLCMovieViewController *movieViewController;
- @property (nonatomic, retain) VLCAboutViewController *aboutViewController;
- @property (nonatomic, retain) IBOutlet UITableView *tableView;
- @property (nonatomic, retain) IBOutlet AQGridView *gridView;
- - (void)updateViewContents;
- @end
|