12345678910111213141516171819202122232425 |
- /*****************************************************************************
- * VLC for iOS
- *****************************************************************************
- * Copyright (c) 2015 VideoLAN. All rights reserved.
- * $Id$
- *
- * Authors: Felix Paul Kühne <fkuehne # videolan.org>
- *
- * Refer to the COPYING file of the official project for license.
- *****************************************************************************/
- #import <Foundation/Foundation.h>
- #import "VLCServerBrowsingController.h"
- @interface VLCMDFBrowsingArtworkProvider : NSObject
- @property (readwrite, weak) id<VLCRemoteBrowsingCell> artworkReceiver;
- @property (readwrite, nonatomic) BOOL searchForAudioMetadata;
- - (void)reset;
- - (void)searchForArtworkForVideoRelatedString:(NSString *)string;
- @end
|