VLCAppDelegate.h 542 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. VLCPlaylistViewController *_playlistViewController;
  13. }
  14. @property (strong, nonatomic) UIWindow *window;
  15. @property (strong, nonatomic) UINavigationController *navigationController;
  16. @property (strong, nonatomic) UISplitViewController *splitViewController;
  17. @end