mirror of
https://github.com/gnustep/libs-gscoredata.git
synced 2025-03-13 10:51:59 +00:00
* NIB files of DataBuilder updated git-svn-id: svn+ssh://svn.gna.org/svn/gnustep@36598 72102866-910b-0410-8b05-ffd578937521
30 lines
668 B
Objective-C
30 lines
668 B
Objective-C
#import <CoreData/CoreData.h>
|
|
|
|
#ifndef ASSIGN
|
|
#define ASSIGN(VAR, VAL) [(VAR) autorelease], (VAR)=[(VAL) retain]
|
|
#endif
|
|
#ifndef ASSIGNCOPY
|
|
#define ASSIGNCOPY(VAR, VAL) [(VAR) autorelease], (VAR)=[(VAL) copy]
|
|
#endif
|
|
#ifndef DESTROY
|
|
#define DESTROY(VAR) [(VAR) release], (VAR)=nil
|
|
#endif
|
|
#ifndef TEST_RELEASE
|
|
#define TEST_RELEASE(VAR) if(VAR) [(VAR) release]
|
|
#endif
|
|
#ifndef _
|
|
#define _(STR) STR
|
|
#endif
|
|
#ifndef sel_eq
|
|
#ifdef __APPLE__
|
|
#define sel_eq(A, B) ((A) == (B))
|
|
#endif
|
|
#endif
|
|
|
|
#ifndef NSDebugLog
|
|
#define NSDebugLog(FMT, ARGS...)
|
|
#endif
|
|
|
|
@interface NSManagedObjectModel (Private)
|
|
- (NSDictionary *) entitiesByNameForConfiguration: (NSString *) configuration;
|
|
@end
|