VLCHTTPFileDownloader.h 480 B

123456789101112131415161718192021
  1. //
  2. // VLCHTTPFileDownloader.h
  3. // VLC for iOS
  4. //
  5. // Created by Felix Paul Kühne on 20.05.13.
  6. // Copyright (c) 2013 VideoLAN. All rights reserved.
  7. //
  8. // Refer to the COPYING file of the official project for license.
  9. //
  10. @class VLCMenuViewController;
  11. @interface VLCHTTPFileDownloader : NSObject
  12. @property (nonatomic, retain) VLCMenuViewController *mediaViewController;
  13. @property (nonatomic, readonly) BOOL downloadInProgress;
  14. - (void)downloadFileFromURL:(NSURL *)url;
  15. @end