00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class NSString;
00010
00011 @interface MLPhotoDCFObject : NSObject
00012 {
00013 NSString *_name;
00014 int _number;
00015 }
00016
00017 + (id)validDCFNameForName:(id)fp8 requiredLength:(int)fp12 nameLength:(int)fp16 number:(int *)fp20 numberRange:(struct _NSRange)fp24;
00018 - (id)initWithName:(id)fp8 number:(int)fp12;
00019 - (void)dealloc;
00020 - (id)name;
00021 - (int)number;
00022 - (int)compare:(id)fp8;
00023 - (id)description;
00024
00025 @end
00026