Files
o3de/Gems/InAppPurchases/Code/Source/Platform/Common/Apple/InAppPurchasesApple.h
T
Steve Pham 38261d0800 Shorten copyright headers by splitting into 2 lines (#2213)
* Updated all copyright headers to split the longer original copyright line into 2 shorter lines

Signed-off-by: Steve Pham <spham@amazon.com>
2021-07-16 15:25:48 -07:00

53 lines
1.5 KiB
C++

/*
* Copyright (c) Contributors to the Open 3D Engine Project.
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
#pragma once
#include <InAppPurchases/InAppPurchasesInterface.h>
#include "InAppPurchasesDelegate.h"
namespace InAppPurchases
{
class InAppPurchasesApple
: public InAppPurchasesInterface
{
public:
void Initialize() override;
~InAppPurchasesApple();
void QueryProductInfo(AZStd::vector<AZStd::string>& productIds) const override;
void QueryProductInfo() const override;
void PurchaseProduct(const AZStd::string& productId, const AZStd::string& developerPayload) const override;
void PurchaseProduct(const AZStd::string& productId) const override;
void QueryPurchasedProducts() const override;
void RestorePurchasedProducts() const override;
void ConsumePurchase(const AZStd::string& purchaseToken) const override;
void FinishTransaction(const AZStd::string& transactionId, bool downloadHostedContent) const override;
InAppPurchasesCache* GetCache() override;
private:
InAppPurchasesDelegate* m_delegate;
};
class ProductDetailsApple
: public ProductDetails
{
public:
AZ_RTTI(ProductDetailsApple, "{AAF5C20F-482A-45BC-B975-F5864B4C00C5}", ProductDetails);
};
}