mirror of
https://github.com/darlinghq/darling-cocotron.git
synced 2024-11-23 04:00:00 +00:00
13 lines
250 B
Objective-C
13 lines
250 B
Objective-C
#import <Foundation/NSMutableSet.h>
|
|
|
|
@class NSManagedObject;
|
|
|
|
@interface NSManagedObjectMutableSet : NSMutableSet {
|
|
NSManagedObject *_object;
|
|
NSString *_key;
|
|
}
|
|
|
|
- initWithManagedObject: (NSManagedObject *) object key: (NSString *) key;
|
|
|
|
@end
|