00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class NSMutableData;
00010
00011 @interface ConnectionDelegate : NSObject
00012 {
00013 struct Requester *requester;
00014 struct Response *response;
00015 NSMutableData *data;
00016 }
00017
00018 - (id)initWithRequester:(struct Requester *)fp8;
00019 - (void)_deactivate;
00020 - (void)dealloc;
00021 - (void)_failWithError:(int)fp8;
00022 - (void)_cancelWithError;
00023 - (void)connection:(id)fp8 didReceiveResponse:(id)fp12;
00024 - (BOOL)_handleResponse:(BOOL)fp8;
00025 - (void)connection:(id)fp8 didReceiveData:(id)fp12;
00026 - (void)connectionDidFinishLoading:(id)fp8;
00027 - (void)connection:(id)fp8 didFailWithError:(id)fp12;
00028
00029 @end
00030