Files
PINRemoteImage/Pod/Classes/PINRemoteImageBasicCache.h
Alex Shevchenko 3a6bc57ae7 Pluggable cache (#225)
* Cache is pluggable now.
PINCache dependency is optional.

* Cleanup

* Fixing wrong commit

* Cleanup

* Renamed PINRemoteImageCaching methods
2016-08-05 15:59:16 -07:00

19 lines
360 B
Objective-C

//
// PINRemoteImageBasicCache.h
// Pods
//
// Created by Aleksei Shevchenko on 7/28/16.
//
//
#import <Foundation/Foundation.h>
#import "PINRemoteImageCaching.h"
/**
* Simplistic <PINRemoteImageCacheProtocol> wrapper based on NSCache.
* not persisting any data on disk
*/
@interface PINRemoteImageBasicCache : NSObject <PINRemoteImageCaching>
@end