00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #import "SimpleDBAttribute.h"
00017
00018
00023 @interface SimpleDBDeletableItem : NSObject
00024
00025 {
00026 NSString* name;
00027 NSMutableArray* attributes;
00028
00029 }
00030
00031
00032 @property (nonatomic, retain) NSString* name;
00033
00034 @property (nonatomic, retain) NSMutableArray* attributes;
00035
00036
00041 -(id)init;
00042
00050 -(id)initWithName:(NSString*)theName andAttributes:(NSMutableArray*)theAttributes;
00051
00056 -(void)addAttribute:(SimpleDBAttribute*)attribute;
00057
00064 -(NSString*)description;
00065
00066
00067 @end
00068