VLCAppDelegate.h 797 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // VLCAppDelegate.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 "VLCDropboxTableViewController.h"
  9. @class VLCPlaylistViewController;
  10. @class PAPasscodeViewController;
  11. @interface VLCAppDelegate : UIResponder <UIApplicationDelegate>
  12. {
  13. NSURL *_tempURL;
  14. PAPasscodeViewController *_passcodeLockController;
  15. }
  16. - (void)updateMediaList;
  17. @property (nonatomic, readonly) VLCPlaylistViewController *playlistViewController;
  18. @property (nonatomic, readonly) VLCDropboxTableViewController *dropboxTableViewController;
  19. @property (nonatomic, strong) UIWindow *window;
  20. @property (nonatomic, strong) UINavigationController *navigationController;
  21. @property (nonatomic, retain) NSDate *nextPasscodeCheckDate;
  22. @end