mirror of
https://github.com/darlinghq/darling-cocotron.git
synced 2024-11-27 05:50:27 +00:00
10 lines
367 B
Objective-C
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
|