VLCAppDelegate.h 962 B

12345678910111213141516171819202122232425262728
  1. /*****************************************************************************
  2. * VLCAppDelegate.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2013-2018 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 <AppAuth/AppAuth.h>
  17. extern NSString *const VLCDropboxSessionWasAuthorized;
  18. @interface VLCAppDelegate : UIResponder <UIApplicationDelegate>
  19. @property (nonatomic, strong) UIWindow *window;
  20. @property (atomic, strong) id<OIDAuthorizationFlowSession> currentGoogleAuthorizationFlow;
  21. @end