VLCCloudStorageTVViewController.h 958 B

1234567891011121314151617181920212223242526
  1. /*****************************************************************************
  2. * VLC for iOS
  3. *****************************************************************************
  4. * Copyright (c) 2015 VideoLAN. All rights reserved.
  5. * $Id$
  6. *
  7. * Authors: Felix Paul Kühne <fkuehne # videolan.org>
  8. *
  9. * Refer to the COPYING file of the official project for license.
  10. *****************************************************************************/
  11. #import "VLCRemoteBrowsingCollectionViewController.h"
  12. #import "VLCCloudStorageController.h"
  13. @interface VLCCloudStorageTVViewController : VLCRemoteBrowsingCollectionViewController
  14. @property (nonatomic, strong) VLCCloudStorageController *controller;
  15. @property (nonatomic, strong) NSString *currentPath;
  16. @property (nonatomic) BOOL authorizationInProgress;
  17. @property (nonatomic, strong) UIActivityIndicatorView *activityIndicator;
  18. - (void)updateViewAfterSessionChange;
  19. - (void)requestInformationForCurrentPath;
  20. @end