-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTreeRootFlare.h
39 lines (29 loc) · 953 Bytes
/
TreeRootFlare.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
//
// TreeRootFlare.h
// Trees
//
// Created by Evan on 1/6/11.
// Copyright 2011 NCPTT. All rights reserved.
//
#import <CoreData/CoreData.h>
#import "Photo.h"
@class AssessmentTree;
@class TreeRootFlareCondition;
@class TreeRootFlareRecommendation;
@interface TreeRootFlare : Photo
{
}
@property (nonatomic, retain) NSSet* condition;
@property (nonatomic, retain) NSSet* recommendation;
@property (nonatomic, retain) AssessmentTree * tree;
@end
@interface TreeRootFlare (CoreDataGeneratedAccessors)
- (void)addConditionObject:(TreeRootFlareCondition *)value;
- (void)removeConditionObject:(TreeRootFlareCondition *)value;
- (void)addCondition:(NSSet *)value;
- (void)removeCondition:(NSSet *)value;
- (void)addRecommendationObject:(TreeRootFlareRecommendation *)value;
- (void)removeRecommendationObject:(TreeRootFlareRecommendation *)value;
- (void)addRecommendation:(NSSet *)value;
- (void)removeRecommendation:(NSSet *)value;
@end