2015-08-02 20:38:38 +00:00
|
|
|
//
|
|
|
|
// mas-cli-Bridging-Header.h
|
|
|
|
// mas-cli
|
|
|
|
//
|
|
|
|
// Created by Andrew Naylor on 11/07/2015.
|
|
|
|
// Copyright © 2015 Andrew Naylor. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef mas_cli_Bridging_Header_h
|
|
|
|
#define mas_cli_Bridging_Header_h
|
|
|
|
|
|
|
|
@import Foundation;
|
|
|
|
|
2015-09-14 08:10:24 +00:00
|
|
|
#import <StoreFoundation/ISStoreAccount.h>
|
|
|
|
|
|
|
|
#import <CommerceKit/CKAccountStore.h>
|
|
|
|
#import <CommerceKit/CKDownloadQueue.h>
|
|
|
|
#import <CommerceKit/CKPurchaseController.h>
|
|
|
|
#import <CommerceKit/CKSoftwareMap.h>
|
|
|
|
#import <CommerceKit/CKUpdateController.h>
|
|
|
|
|
|
|
|
#import <StoreFoundation/CKUpdate.h>
|
|
|
|
#import <StoreFoundation/SSDownload.h>
|
|
|
|
#import <StoreFoundation/SSDownloadMetadata.h>
|
|
|
|
#import <StoreFoundation/SSDownloadPhase.h>
|
|
|
|
#import <StoreFoundation/SSDownloadStatus.h>
|
|
|
|
#import <StoreFoundation/SSPurchaseResponse.h>
|
2016-02-14 01:22:33 +00:00
|
|
|
#import <StoreFoundation/ISStoreClient.h>
|
|
|
|
#import <StoreFoundation/ISAuthenticationContext.h>
|
|
|
|
#import <StoreFoundation/ISServiceRemoteObject-Protocol.h>
|
|
|
|
#import <StoreFoundation/ISAccountService-Protocol.h>
|
|
|
|
#import <StoreFoundation/ISServiceProxy.h>
|
2015-08-02 20:38:38 +00:00
|
|
|
|
|
|
|
@protocol CKDownloadQueueObserver
|
|
|
|
|
|
|
|
- (void)downloadQueue:(CKDownloadQueue *)downloadQueue changedWithAddition:(SSDownload *)download;
|
|
|
|
- (void)downloadQueue:(CKDownloadQueue *)downloadQueue changedWithRemoval:(SSDownload *)download;
|
|
|
|
- (void)downloadQueue:(CKDownloadQueue *)downloadQueue statusChangedForDownload:(SSDownload *)download;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2016-09-14 18:17:27 +00:00
|
|
|
NSString* CKDownloadDirectory(NSString *target);
|
|
|
|
|
2015-08-02 20:38:38 +00:00
|
|
|
#endif /* mas_cli_Bridging_Header_h */
|