// // DLFIFOCache.h // DLSlideViewDemo // // Created by Dongle Su on 14-12-13. // Copyright (c) 2014年 dongle. All rights reserved. // #import #import "DLCacheProtocol.h" @interface DLLRUCache : NSObject - (id)initWithCount:(NSInteger)count; - (void)setObject:(id)object forKey:(NSString *)key; - (id)objectForKey:(NSString *)key; @end