mirror of
https://github.com/zhigang1992/PINRemoteImage.git
synced 2026-06-10 07:10:08 +08:00
* Cache is pluggable now. PINCache dependency is optional. * Cleanup * Fixing wrong commit * Cleanup * Renamed PINRemoteImageCaching methods
19 lines
360 B
Objective-C
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
|