00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class NSHTTPCookieInternal;
00010
00011 @interface NSHTTPCookie : NSObject
00012 {
00013 NSHTTPCookieInternal *_cookiePrivate;
00014 }
00015
00016 + (id)cookieWithProperties:(id)fp8;
00017 + (id)cookieWithCFHTTPCookie:(struct OpaqueCFHTTPCookie *)fp8;
00018 + (id)_cf2nsCookies:(struct __CFArray *)fp8;
00019 + (struct __CFArray *)_ns2cfCookies:(id)fp8;
00020 + (id)requestHeaderFieldsWithCookies:(id)fp8;
00021 + (id)cookiesWithResponseHeaderFields:(id)fp8 forURL:(id)fp12;
00022 - (id)initWithProperties:(id)fp8;
00023 - (id)initWithCFHTTPCookie:(struct OpaqueCFHTTPCookie *)fp8;
00024 - (id)init;
00025 - (void)dealloc;
00026 - (id)properties;
00027 - (unsigned int)version;
00028 - (id)name;
00029 - (id)value;
00030 - (id)expiresDate;
00031 - (BOOL)isSessionOnly;
00032 - (BOOL)isSecure;
00033 - (id)domain;
00034 - (id)path;
00035 - (id)comment;
00036 - (id)commentURL;
00037 - (id)portList;
00038 - (struct OpaqueCFHTTPCookie *)_GetInternalCFHTTPCookie;
00039 - (int)_compareForHeaderOrder:(id)fp8;
00040 - (id)_key;
00041 - (BOOL)_isExpired;
00042 - (id)description;
00043 - (BOOL)isEqual:(id)fp8;
00044 - (unsigned int)hash;
00045 - (void)encodeWithCoder:(id)fp8;
00046 - (id)initWithCoder:(id)fp8;
00047
00048 @end
00049