SDWebImage.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * This file is part of the SDWebImage package.
  3. * (c) Olivier Poitrey <rs@dailymotion.com>
  4. * (c) Florent Vilmart
  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 "SDWebImageCompat.h"
  10. #if SD_UIKIT
  11. #import <UIKit/UIKit.h>
  12. #endif
  13. #import "SDWebImageManager.h"
  14. #import "SDImageCacheConfig.h"
  15. #import "SDImageCache.h"
  16. #import "UIView+WebCache.h"
  17. #import "UIImageView+WebCache.h"
  18. #import "UIImageView+HighlightedWebCache.h"
  19. #import "SDWebImageDownloaderOperation.h"
  20. #import "UIButton+WebCache.h"
  21. #import "SDWebImagePrefetcher.h"
  22. #import "UIView+WebCacheOperation.h"
  23. #import "UIImage+MultiFormat.h"
  24. #import "SDWebImageOperation.h"
  25. #import "SDWebImageDownloader.h"
  26. #if SD_MAC || SD_UIKIT
  27. #import "MKAnnotationView+WebCache.h"
  28. #endif
  29. #import "SDWebImageDecoder.h"
  30. #import "UIImage+WebP.h"
  31. #import "UIImage+GIF.h"
  32. #import "NSData+ImageContentType.h"
  33. #if SD_MAC
  34. #import "NSImage+WebCache.h"
  35. #endif
  36. #if SD_UIKIT
  37. #import "FLAnimatedImageView+WebCache.h"
  38. #if __has_include(<FLAnimatedImage/FLAnimatedImage.h>)
  39. #import "FLAnimatedImage.h"
  40. #endif
  41. #if __has_include(<FLAnimatedImage/FLAnimatedImageView.h>)
  42. #import "FLAnimatedImageView.h"
  43. #endif
  44. #endif