mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 12:07:03 +08:00
30 lines
514 B
C
30 lines
514 B
C
|
// 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
|