VLCCloudStorageCollectionViewCell.h 913 B

123456789101112131415161718192021222324252627
  1. /*****************************************************************************
  2. * VLCCloudStorageCollectionViewCell.h
  3. * VLC for tvOS
  4. *****************************************************************************
  5. * Copyright (c) 2013-2015 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 "VLCRemoteBrowsingTVCell.h"
  14. #import "VLCDropboxController.h"
  15. #import "VLCOneDriveObject.h"
  16. #import <BoxSDK/BoxSDK.h>
  17. @interface VLCCloudStorageCollectionViewCell : VLCRemoteBrowsingTVCell
  18. @property (nonatomic, retain) DBMetadata *dropboxFile;
  19. @property (nonatomic, retain) VLCOneDriveObject *oneDriveFile;
  20. @property (nonatomic, retain) BoxItem *boxFile;
  21. @end