123456789101112131415161718192021222324 |
- /*****************************************************************************
- * VLCLocalNetworkServiceNetService.h
- * VLC for iOS
- *****************************************************************************
- * Copyright (c) 2015 VideoLAN. All rights reserved.
- * $Id$
- *
- * Authors: Tobias Conradi <videolan # tobias-conradi.de>
- *
- * Refer to the COPYING file of the official project for license.
- *****************************************************************************/
- #import "VLCLocalNetworkService-Protocol.h"
- NS_ASSUME_NONNULL_BEGIN
- #pragma mark - NetService based services
- @interface VLCLocalNetworkServiceNetService : NSObject <VLCLocalNetworkService>
- @property (nonatomic, readonly, strong) NSNetService *netService;
- - (instancetype)initWithNetService:(NSNetService *)service serviceName:(NSString *)serviceName;
- @end
- NS_ASSUME_NONNULL_END
|