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
402 B
19 lines
402 B
1 year ago
|
//
|
||
|
// DLCacheProtocol.h
|
||
|
// DLSlideViewDemo
|
||
|
//
|
||
|
// Created by Dongle Su on 15-2-13.
|
||
|
// Copyright (c) 2015年 dongle. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#ifndef DLSlideViewDemo_DLCacheProtocol_h
|
||
|
#define DLSlideViewDemo_DLCacheProtocol_h
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
@protocol DLCacheProtocol <NSObject>
|
||
|
- (void)setObject:(id)object forKey:(NSString *)key;
|
||
|
- (id)objectForKey:(NSString *)key;
|
||
|
@end
|
||
|
|
||
|
#endif
|