00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class NSMutableArray;
00010
00011 @interface IMAPDownload : NSObject
00012 {
00013 unsigned int _uid;
00014 NSMutableArray *_pendingFetchResults;
00015 }
00016
00017 - (void)dealloc;
00018 - (id)initWithUid:(unsigned long)fp8;
00019 - (unsigned long)uid;
00020 - (unsigned long)expectedLength;
00021 - (BOOL)isComplete;
00022 - (unsigned long)bytesFetched;
00023 - (id)data;
00024 - (id)error;
00025 - (void)setError:(id)fp8;
00026 - (void)handleFetchResult:(id)fp8;
00027 - (void)processResults;
00028 - (void)addCommandsToPipeline:(id)fp8 withCache:(id)fp12;
00029
00030 @end
00031