Files
RestKit/Examples/RKDiscussionBoardExample/DiscussionBoard/Code/Other/DBManagedObjectCache.h

21 lines
487 B
Objective-C

//
// DBManagedObjectCache.h
// DiscussionBoard
//
// Created by Jeremy Ellison on 1/10/11.
// Copyright 2011 Two Toasters. All rights reserved.
//
#import <RestKit/CoreData/RKManagedObjectCache.h>
/**
* An implementation of the RestKit object cache. The object cache is
* used to return locally cached objects that live in a known resource path.
* This can be used to avoid trips to the network.
*/
@interface DBManagedObjectCache : NSObject <RKManagedObjectCache> {
}
@end