libs-gscoredata/DataBuilder/Private.h
H. Nikolaus Schaller 6ee8761b67 * added .qcodeproj for compilation on mySTEP/QuantumSTEP
* NIB files of DataBuilder updated

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep@36598 72102866-910b-0410-8b05-ffd578937521
2013-05-08 08:07:02 +00:00

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