00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 #import "NSCodingProtocol.h"
00010 #import "NSCopyingProtocol.h"
00011
00012 @class NSCachedURLResponseInternal;
00013
00014 @interface NSCachedURLResponse : NSObject <NSCoding, NSCopying>
00015 {
00016 NSCachedURLResponseInternal *_internal;
00017 }
00018
00019 - (id)initWithResponse:(id)fp8 data:(id)fp12;
00020 - (id)initWithResponse:(id)fp8 data:(id)fp12 userInfo:(id)fp16 storagePolicy:(unsigned int)fp20;
00021 - (id)copyWithZone:(struct _NSZone *)fp8;
00022 - (id)initWithCoder:(id)fp8;
00023 - (void)encodeWithCoder:(id)fp8;
00024 - (id)response;
00025 - (id)data;
00026 - (id)userInfo;
00027 - (unsigned int)storagePolicy;
00028 - (void)dealloc;
00029
00030 @end
00031