darling-cocotron/CoreData/NSPersistentStoreCoordinator-Private.h
2015-05-23 20:15:45 -04:00

10 lines
367 B
Objective-C

#import <CoreData/NSPersistentStoreCoordinator.h>
@class NSManagedObjectID;
@interface NSPersistentStoreCoordinator (private)
- (NSPersistentStore *)_persistentStoreWithIdentifier:(NSString *)identifier;
- (NSPersistentStore *)_persistentStoreForObjectID:(NSManagedObjectID *)object;
- (NSPersistentStore *)_persistentStoreForObject:(NSManagedObject *)object;
@end