PINRemoteImageBasicCache.h 360 B

12345678910111213141516171819
  1. //
  2. // PINRemoteImageBasicCache.h
  3. // Pods
  4. //
  5. // Created by Aleksei Shevchenko on 7/28/16.
  6. //
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "PINRemoteImageCaching.h"
  10. /**
  11. * Simplistic <PINRemoteImageCacheProtocol> wrapper based on NSCache.
  12. * not persisting any data on disk
  13. */
  14. @interface PINRemoteImageBasicCache : NSObject <PINRemoteImageCaching>
  15. @end