VLCOneDriveController.h 917 B

123456789101112131415161718192021222324252627282930313233
  1. /*****************************************************************************
  2. * VLCOneDriveController.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2014 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. @protocol VLCOneDriveControllerDelegate <NSObject>
  14. @end
  15. @interface VLCOneDriveController : NSObject
  16. @property (nonatomic, weak) VLCOneDriveTableViewController *delegate;
  17. + (VLCOneDriveController *)sharedInstance;
  18. - (void)login;
  19. - (void)logout;
  20. - (void)requestDirectoryListingAtPath:(NSString *)path;
  21. - (void)downloadFileWithPath:(NSString *)path;
  22. - (void)streamFileWithPath:(NSString *)path;
  23. @end