-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathItem.h
45 lines (34 loc) · 1 KB
/
Item.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//
// Item.h
// Folio
//
// Created by Pep on 24/10/2010.
// Copyright 2010 none. All rights reserved.
//
#import <CoreData/CoreData.h>
@class Collection;
@class Picture;
@class Tag;
@interface Item : NSManagedObject
{
}
@property (nonatomic, retain) NSDate * updateTime;
@property (nonatomic, retain) NSSet* collections;
@property (nonatomic, retain) NSSet* pictures;
@property (nonatomic, retain) Tag * primaryTag;
@property (nonatomic, retain) NSSet* tags;
@end
@interface Item (CoreDataGeneratedAccessors)
- (void)addCollectionsObject:(Collection *)value;
- (void)removeCollectionsObject:(Collection *)value;
- (void)addCollections:(NSSet *)value;
- (void)removeCollections:(NSSet *)value;
- (void)addPicturesObject:(Picture *)value;
- (void)removePicturesObject:(Picture *)value;
- (void)addPictures:(NSSet *)value;
- (void)removePictures:(NSSet *)value;
- (void)addTagsObject:(Tag *)value;
- (void)removeTagsObject:(Tag *)value;
- (void)addTags:(NSSet *)value;
- (void)removeTags:(NSSet *)value;
@end