VLCGoogleDriveController.h 905 B

12345678910111213141516171819202122232425262728
  1. /*****************************************************************************
  2. * VLCGoogleDriveController.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2013 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Authors: Carola Nitz <nitz.carola # googlemail.com>
  9. * Felix Paul Kühne <fkuehne # videolan.org>
  10. *
  11. * Refer to the COPYING file of the official project for license.
  12. *****************************************************************************/
  13. #import "GTLRDrive.h"
  14. #import "VLCCloudStorageController.h"
  15. #import "VLCGoogleDriveConstants.h"
  16. @interface VLCGoogleDriveController : VLCCloudStorageController
  17. @property (nonatomic, retain) GTLRDriveService *driveService;
  18. - (void)stopSession;
  19. - (void)streamFile:(GTLRDrive_File *)file;
  20. - (void)downloadFileToDocumentFolder:(GTLRDrive_File *)file;
  21. - (BOOL)hasMoreFiles;
  22. @end