/***************************************************************************** * VLC for iOS ***************************************************************************** * Copyright (c) 2016 VideoLAN. All rights reserved. * $Id$ * * Authors: Vincent L. Cone * * Refer to the COPYING file of the official project for license. *****************************************************************************/ #import #import "VLCNetworkServerBrowser-Protocol.h" NS_ASSUME_NONNULL_BEGIN @interface VLCNetworkServerSearchBrowser : NSObject // change the searchText to update the filters @property (nonatomic, copy, nullable) NSString *searchText; // VLCNetworkServerSearchBrowser does not set itself as the delegate of the serverBrowser, // instead the delegate of the serverBrowser has to relay the delegate methods to VLCNetworkServerSearchBrowser while active. - (instancetype)initWithServerBrowser:(id)serverBrowser; @end NS_ASSUME_NONNULL_END