VLCAppDelegate.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /*****************************************************************************
  2. * VLCAppDelegate.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2013-2015 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Authors: Felix Paul Kühne <fkuehne # videolan.org>
  9. * Gleb Pinigin <gpinigin # gmail.com>
  10. * Jean-Romain Prévost <jr # 3on.fr>
  11. * Carola Nitz <nitz.carola # googlemail.com>
  12. * Tamas Timar <ttimar.vlc # gmail.com>
  13. *
  14. * Refer to the COPYING file of the official project for license.
  15. *****************************************************************************/
  16. #import "VLCMenuTableViewController.h"
  17. #import "VLCDownloadViewController.h"
  18. #import "VLCWatchCommunication.h"
  19. #import <AppAuth/AppAuth.h>
  20. @class VLCLibraryViewController;
  21. extern NSString *const VLCDropboxSessionWasAuthorized;
  22. @interface VLCAppDelegate : UIResponder <UIApplicationDelegate>
  23. @property (nonatomic, readonly) VLCLibraryViewController *libraryViewController;
  24. @property (nonatomic, readonly) VLCWatchCommunication *watchCommunication;
  25. @property (nonatomic, strong) UIWindow *window;
  26. @property (atomic, strong) id<OIDAuthorizationFlowSession> currentGoogleAuthorizationFlow;
  27. @end