VLCAppDelegate.h 787 B

1234567891011121314151617181920212223242526272829
  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. // Refer to the COPYING file of the official project for license.
  9. //
  10. #import "VLCDropboxTableViewController.h"
  11. @class VLCPlaylistViewController;
  12. @class PAPasscodeViewController;
  13. @interface VLCAppDelegate : UIResponder <UIApplicationDelegate>
  14. - (void)updateMediaList;
  15. @property (nonatomic, readonly) VLCPlaylistViewController *playlistViewController;
  16. @property (nonatomic, readonly) VLCDropboxTableViewController *dropboxTableViewController;
  17. @property (nonatomic, strong) UIWindow *window;
  18. @property (nonatomic, strong) UINavigationController *navigationController;
  19. @property (nonatomic, retain) NSDate *nextPasscodeCheckDate;
  20. @end