mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 01:10:39 +00:00
Partial skeleton
This commit is contained in:
parent
c0b812c73c
commit
b2e06fe788
1 changed files with 16 additions and 1 deletions
|
@ -27,14 +27,29 @@
|
|||
|
||||
#import <AppKit/NSDocument.h>
|
||||
|
||||
#if OS_API_VERSION(MAC_OS_X_VERSION_10_0, GS_API_LATEST)
|
||||
#if OS_API_VERSION(MAC_OS_X_VERSION_10_4, GS_API_LATEST)
|
||||
|
||||
#if defined(__cplusplus)
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@class NSManagedObjectContext;
|
||||
@class NSManagedObjectModel;
|
||||
|
||||
@interface NSPersistentDocument : NSDocument
|
||||
|
||||
- (NSManagedObjectContext *) managedObjectContext;
|
||||
- (NSManagedObjectModel *) managedObjectModel;
|
||||
|
||||
- (BOOL) configurePersistentStoreCoordinatorForURL: (NSURL *)url
|
||||
ofType: (NSString *)fileType
|
||||
modelConfiguration: (NSString *)config
|
||||
storeOptions: (NSDictionary *)options
|
||||
error: (NSError *)err;
|
||||
|
||||
- (NSString *) persistentStoreTypeForFileType: (NSString *)fileType;
|
||||
|
||||
|
||||
@end
|
||||
|
||||
#if defined(__cplusplus)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue