mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-02 17:57:22 +08:00
17 lines
361 B
Objective-C
17 lines
361 B
Objective-C
//
|
|
// RKInMemoryMappingCache.h
|
|
// RestKit
|
|
//
|
|
// Created by Jeff Arena on 1/24/12.
|
|
// Copyright (c) 2012 RestKit. All rights reserved.
|
|
//
|
|
|
|
#import "RKManagedObjectMappingCache.h"
|
|
#import "RKInMemoryEntityCache.h"
|
|
|
|
@interface RKInMemoryMappingCache : NSObject <RKManagedObjectMappingCache>
|
|
|
|
@property (nonatomic, readonly) RKInMemoryEntityCache *cache;
|
|
|
|
@end
|