/***************************************************************************** * VLCLocalNetworkServiceNetService.m * VLC for iOS ***************************************************************************** * Copyright (c) 2015 VideoLAN. All rights reserved. * $Id$ * * Authors: Tobias Conradi * * Refer to the COPYING file of the official project for license. *****************************************************************************/ #import "VLCLocalNetworkServiceNetService.h" #pragma mark - NetService based services @interface VLCLocalNetworkServiceNetService() @property (nonatomic, strong) NSNetService *netService; @end @implementation VLCLocalNetworkServiceNetService - (instancetype)initWithNetService:(NSNetService *)service { self = [super init]; if (self) { _netService = service; } return self; } - (NSString *)title { return self.netService.name; } - (UIImage *)icon { return nil; } - (id)serverBrowser { return nil; } @end