summaryrefslogtreecommitdiffstats
path: root/examples/corelib/bindableproperties/shared/subscriptionwindow.h
blob: 75f6a1eb83e9949872d754a1f50c1327cc01211e (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
25
26
27
28
29
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#ifndef SUBSCRIPTIONWINDOW_H
#define SUBSCRIPTIONWINDOW_H

#include <QWidget>

QT_BEGIN_NAMESPACE
namespace Ui {
class SubscriptionWindow;
}
QT_END_NAMESPACE

class User;

class SubscriptionWindow : public QWidget
{
    Q_OBJECT

public:
    explicit SubscriptionWindow(QWidget *parent = nullptr);
    ~SubscriptionWindow();

private:
    Ui::SubscriptionWindow *ui;
};

#endif // SUBSCRIPTIONWINDOW_H