00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef Augmented_Reality_Tractor_Maintenance_JDTractorList_h
00010 #define Augmented_Reality_Tractor_Maintenance_JDTractorList_h
00011
00012
00013 @interface JDTractorItem : NSObject
00014
00015 -(id)initWithItem:(JDTractorItem *)oldItem;
00016
00017 -(void)setTractorName:(NSString *)tractorName;
00018 -(void)setImageName:(NSString *)imageName;
00019
00020 -(NSString *)getTractorName;
00021 -(NSString *)getImageName;
00022
00023 @end
00024
00025
00026 @interface JDTractorList : NSObject <NSXMLParserDelegate>
00027
00028 -(NSArray *)getTractorList;
00029
00030 @end
00031
00032 #endif