You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
388 B
19 lines
388 B
![]()
2 years ago
|
//
|
||
|
// DLFIFOCache.h
|
||
|
// DLSlideViewDemo
|
||
|
//
|
||
|
// Created by Dongle Su on 14-12-13.
|
||
|
// Copyright (c) 2014年 dongle. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import "DLCacheProtocol.h"
|
||
|
|
||
|
@interface DLLRUCache : NSObject<DLCacheProtocol>
|
||
|
|
||
|
- (id)initWithCount:(NSInteger)count;
|
||
|
|
||
|
- (void)setObject:(id)object forKey:(NSString *)key;
|
||
|
- (id)objectForKey:(NSString *)key;
|
||
|
@end
|