VLCGoogleDriveController.h 940 B

1234567891011121314151617181920212223242526272829
  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 "GTLDrive.h"
  14. #import "GTMOAuth2ViewControllerTouch.h"
  15. #import "VLCCloudStorageController.h"
  16. #import "VLCGoogleDriveConstants.h"
  17. @interface VLCGoogleDriveController : VLCCloudStorageController
  18. @property (nonatomic, retain) GTLServiceDrive *driveService;
  19. - (void)stopSession;
  20. - (void)streamFile:(GTLDriveFile *)file;
  21. - (void)downloadFileToDocumentFolder:(GTLDriveFile *)file;
  22. - (BOOL)hasMoreFiles;
  23. @end