00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 #import "EDKeyedObjectProtocol.h"
00010 #import "NSCopyingProtocol.h"
00011
00012 @class EDString;
00013
00014 @interface EDContentFormat : NSObject <EDKeyedObject, NSCopying>
00015 {
00016 EDString *mFormatString;
00017 unsigned int mFormatId;
00018 _Bool mBuiltIn;
00019 _Bool mReferenced;
00020 }
00021
00022 + (id)contentFormatWithFormatString:(id)fp8;
00023 - (id)init;
00024 - (void)dealloc;
00025 - (id)copyWithZone:(struct _NSZone *)fp8;
00026 - (BOOL)isEqualToContentFormat:(id)fp8;
00027 - (BOOL)isEqual:(id)fp8;
00028 - (unsigned int)hash;
00029 - (int)key;
00030 - (id)formatString;
00031 - (unsigned int)formatId;
00032 - (_Bool)builtIn;
00033 - (_Bool)referenced;
00034
00035 @end
00036