VLCCloudStorageTVViewController.h 1004 B

123456789101112131415161718192021222324252627
  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. #import "VLCCloudStorageCollectionViewCell.h"
  14. @interface VLCCloudStorageTVViewController : VLCRemoteBrowsingCollectionViewController
  15. @property (nonatomic, strong) VLCCloudStorageController *controller;
  16. @property (nonatomic, strong) NSString *currentPath;
  17. @property (nonatomic) BOOL authorizationInProgress;
  18. @property (nonatomic, strong) UIActivityIndicatorView *activityIndicator;
  19. - (void)updateViewAfterSessionChange;
  20. - (void)requestInformationForCurrentPath;
  21. @end