/* * This file is part of the SDWebImage package. * (c) Olivier Poitrey * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ #import #import "SDWebImageDownloaderDelegate.h" @interface SDWebImageDownloader : NSOperation { NSURL *url; id delegate; } @property (retain) NSURL *url; @property (assign) id delegate; + (id)downloaderWithURL:(NSURL *)url delegate:(id)delegate; + (void)setMaxConcurrentDownloads:(NSUInteger)max; @end