VLCAppDelegate.h 516 B

123456789101112131415161718192021222324
  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 <UIKit/UIKit.h>
  9. #import "VLCPlaylistViewController.h"
  10. @interface VLCAppDelegate : UIResponder <UIApplicationDelegate>
  11. {
  12. NSURL *_tempURL;
  13. }
  14. @property (nonatomic, readonly) VLCPlaylistViewController *playlistViewController;
  15. @property (nonatomic, strong) UIWindow *window;
  16. @property (nonatomic, strong) UINavigationController *navigationController;
  17. @end