VLCServerBrowsingTVViewController.h 1.1 KB

12345678910111213141516171819202122232425262728
  1. /*****************************************************************************
  2. * VLC for iOS
  3. *****************************************************************************
  4. * Copyright (c) 2015 VideoLAN. All rights reserved.
  5. * $Id$
  6. *
  7. * Authors: Tobias Conradi <videolan # tobias-conradi.de>
  8. *
  9. * Refer to the COPYING file of the official project for license.
  10. *****************************************************************************/
  11. #import <UIKit/UIKit.h>
  12. #import "VLCRemoteBrowsingCollectionViewController.h"
  13. #import "VLCNetworkServerBrowser-Protocol.h"
  14. NS_ASSUME_NONNULL_BEGIN
  15. @interface VLCServerBrowsingTVViewController : VLCRemoteBrowsingCollectionViewController <VLCNetworkServerBrowserDelegate>
  16. @property (nonatomic) BOOL downloadArtwork;
  17. @property (nonatomic, readonly) id<VLCNetworkServerBrowser>serverBrowser;
  18. @property (nonatomic, null_resettable) Class subdirectoryBrowserClass; // if not set returns [self class], must be subclass of VLCServerBrowsingTVViewController
  19. - (instancetype)initWithServerBrowser:(id<VLCNetworkServerBrowser>)serverBrowser;
  20. @end
  21. NS_ASSUME_NONNULL_END