SDWebImageTestLoader.h 550 B

123456789101112131415161718
  1. /*
  2. * This file is part of the SDWebImage package.
  3. * (c) Olivier Poitrey <rs@dailymotion.com>
  4. * (c) Matt Galloway
  5. *
  6. * For the full copyright and license information, please view the LICENSE
  7. * file that was distributed with this source code.
  8. */
  9. #import <Foundation/Foundation.h>
  10. #import <SDWebImage/SDImageLoader.h>
  11. // A really naive implementation of custom image loader using `NSURLSession`
  12. @interface SDWebImageTestLoader : NSObject <SDImageLoader>
  13. @property (nonatomic, class, readonly, nonnull) SDWebImageTestLoader *sharedLoader;
  14. @end