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.
18 lines
402 B
18 lines
402 B
// |
|
// 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
|
|
|