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