mirror of
https://github.com/darlinghq/darling-cocotron.git
synced 2024-11-23 12:09:51 +00:00
14 lines
280 B
Objective-C
14 lines
280 B
Objective-C
#import <Foundation/NSSet.h>
|
|
|
|
@class NSManagedObjectContext;
|
|
|
|
@interface NSManagedObjectSet : NSSet {
|
|
NSManagedObjectContext *_context;
|
|
NSSet *_set;
|
|
}
|
|
|
|
- initWithManagedObjectContext: (NSManagedObjectContext *) context
|
|
set: (NSSet *) set;
|
|
|
|
@end
|