VLCMDFBrowsingArtworkProvider.h 792 B

12345678910111213141516171819202122232425
  1. /*****************************************************************************
  2. * VLC for iOS
  3. *****************************************************************************
  4. * Copyright (c) 2015 VideoLAN. All rights reserved.
  5. * $Id$
  6. *
  7. * Authors: Felix Paul Kühne <fkuehne # videolan.org>
  8. *
  9. * Refer to the COPYING file of the official project for license.
  10. *****************************************************************************/
  11. #import <Foundation/Foundation.h>
  12. #import "VLCServerBrowsingController.h"
  13. @interface VLCMDFBrowsingArtworkProvider : NSObject
  14. @property (readwrite, weak) id<VLCRemoteBrowsingCell> artworkReceiver;
  15. @property (readwrite, nonatomic) BOOL searchForAudioMetadata;
  16. - (void)reset;
  17. - (void)searchForArtworkForVideoRelatedString:(NSString *)string;
  18. @end