00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 #import "ISDialogURLHandlerProtocol.h"
00010
00011 @class ISPlistParser, NSMutableArray;
00012
00013 @interface ISPurchaseManager : NSObject <ISDialogURLHandler>
00014 {
00015 NSMutableArray *_pendingPurchases;
00016 struct __CFDictionary *_delegates;
00017 ISPlistParser *_requestParser;
00018 struct __CFDictionary *_purchasedItems;
00019 }
00020
00021 + (id)sharedInstance;
00022 - (void)dealloc;
00023 - (BOOL)canPurchaseItem:(id)fp8 error:(id *)fp12;
00024 - (BOOL)canPurchaseItems:(id)fp8 error:(id *)fp12;
00025 - (BOOL)hasPurchasedItem:(id)fp8;
00026 - (BOOL)isActive;
00027 - (void)clearDelegate:(id)fp8;
00028 - (void)purchaseItem:(id)fp8 withTag:(int)fp12 delegate:(id)fp16;
00029 - (void)handleButton:(id)fp8 forDialog:(id)fp12;
00030 - (void)plistParserWillSendDialog:(id)fp8 forPlist:(id)fp12;
00031 - (void)plistParser:(id)fp8 finishedWithPlist:(id)fp12 error:(id)fp16;
00032 - (void)plistParserWillFetchPlist:(id)fp8;
00033 - (void)_addItemToPurchasedSet:(id)fp8;
00034 - (void)_cancelPurchaseForItem:(id)fp8;
00035 - (id)_errorForPlist:(id)fp8 parser:(id)fp12;
00036 - (void)_sendError:(id)fp8 forItem:(id)fp12 tag:(int)fp16;
00037 - (void)_startNextPurchase;
00038 - (Class)_parserClass;
00039 - (id)_downloadQueue;
00040
00041 @end
00042