VLCAppDelegate.h 717 B

123456789101112131415161718192021222324252627
  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. - (void)updateMediaList;
  13. @property (nonatomic, readonly) VLCPlaylistViewController *playlistViewController;
  14. @property (nonatomic, readonly) VLCDropboxTableViewController *dropboxTableViewController;
  15. @property (nonatomic, strong) UIWindow *window;
  16. @property (nonatomic, strong) UINavigationController *navigationController;
  17. @property (nonatomic, retain) NSDate *nextPasscodeCheckDate;
  18. @end