summaryrefslogtreecommitdiffstats
path: root/examples/demos/hangman/purchasing/android/androidinappproduct.cpp
blob: 1262155cbb694d4c6f65532978a40886a9e62c79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#include "androidinappproduct.h"
#include "androidinapppurchasebackend.h"

QT_BEGIN_NAMESPACE

AndroidInAppProduct::AndroidInAppProduct(AndroidInAppPurchaseBackend *backend,
                                           const QString &price,
                                           const QString &title,
                                           const QString &description,
                                           ProductType productType,
                                           const QString &identifier,
                                           QObject *parent)
    : InAppProduct(price, title, description, productType, identifier, parent)
    , m_backend(backend)
{
}

void AndroidInAppProduct::purchase()
{
    m_backend->purchaseProduct(this);
}