mirror of
https://github.com/Qv2ray/Qv2ray.git
synced 2025-05-21 03:10:24 +08:00
30 lines
491 B
C++
30 lines
491 B
C++
#ifndef W_SUBSCRIBEEDITOR_H
|
|
#define W_SUBSCRIBEEDITOR_H
|
|
|
|
#include <QDialog>
|
|
#include "QvUtils.h"
|
|
namespace Ui
|
|
{
|
|
class w_SubscribeEditor;
|
|
}
|
|
|
|
class SubscribeEditor : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SubscribeEditor(QWidget *parent = nullptr);
|
|
~SubscribeEditor();
|
|
|
|
private slots:
|
|
void on_buttonBox_accepted();
|
|
|
|
signals:
|
|
void s_update_config();
|
|
|
|
private:
|
|
Ui::w_SubscribeEditor *ui;
|
|
};
|
|
|
|
#endif // W_SUBSCRIBEEDITOR_H
|