VLCOneDriveController.h 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. /*****************************************************************************
  2. * VLCOneDriveController.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2014-2015 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Authors: Felix Paul Kühne <fkuehne # videolan.org>
  9. *
  10. * Refer to the COPYING file of the official project for license.
  11. *****************************************************************************/
  12. #import "VLCOneDriveTableViewController.h"
  13. #import "VLCOneDriveObject.h"
  14. #define VLCOneDriveControllerSessionUpdated @"VLCOneDriveControllerSessionUpdated"
  15. @interface VLCOneDriveController : VLCCloudStorageController
  16. @property (readonly) BOOL activeSession;
  17. @property (nonatomic, readonly) VLCOneDriveObject *rootFolder;
  18. @property (nonatomic, readwrite) VLCOneDriveObject *currentFolder;
  19. + (VLCOneDriveController *)sharedInstance;
  20. - (void)loginWithViewController:(UIViewController*)presentingViewController;
  21. - (void)downloadObject:(VLCOneDriveObject *)object;
  22. - (void)loadCurrentFolder;
  23. @end