VLCLocalNetworkServiceBrowserPlex.h 991 B

123456789101112131415161718192021222324252627
  1. /*****************************************************************************
  2. * VLCLocalNetworkServiceBrowserPlex.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2015 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Authors: Tobias Conradi <videolan # tobias-conradi.de>
  9. *
  10. * Refer to the COPYING file of the official project for license.
  11. *****************************************************************************/
  12. #import "VLCLocalNetworkServiceBrowserNetService.h"
  13. NS_ASSUME_NONNULL_BEGIN
  14. @interface VLCLocalNetworkServiceBrowserPlex : VLCLocalNetworkServiceBrowserNetService
  15. - (instancetype)initWithName:(NSString *)name serviceType:(NSString *)serviceType domain:(NSString *)domain NS_UNAVAILABLE;
  16. - (instancetype)init NS_DESIGNATED_INITIALIZER;
  17. @end
  18. extern NSString *const VLCNetworkServerProtocolIdentifierPlex;
  19. @interface VLCLocalNetworkServicePlex : VLCLocalNetworkServiceNetService
  20. @end
  21. NS_ASSUME_NONNULL_END