VLCDropboxController.h 1015 B

12345678910111213141516171819202122232425262728293031
  1. /*****************************************************************************
  2. * VLCDropboxController.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. *
  10. * Refer to the COPYING file of the official project for license.
  11. *****************************************************************************/
  12. #import "VLCCloudStorageController.h"
  13. #import <ObjectiveDropboxOfficial/ObjectiveDropboxOfficial.h>
  14. @interface VLCDropboxController : VLCCloudStorageController
  15. @property (nonatomic, readonly) NSInteger numberOfFilesWaitingToBeDownloaded;
  16. + (instancetype)sharedInstance;
  17. - (void)shareCredentials;
  18. - (BOOL)restoreFromSharedCredentials;
  19. - (void)downloadFileToDocumentFolder:(DBFILESMetadata *)file;
  20. - (void)streamFile:(DBFILESMetadata *)file currentNavigationController:(UINavigationController *)navigationController;
  21. - (void)reset;
  22. @end