mirror of
https://github.com/MatsuriDayo/nekoray.git
synced 2025-12-17 20:44:38 +03:00
29 lines
501 B
C++
29 lines
501 B
C++
#pragma once
|
|
|
|
#include <QWidget>
|
|
#include "profile_editor.h"
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
namespace Ui { class EditTrojanVLESS; }
|
|
QT_END_NAMESPACE
|
|
|
|
class EditTrojanVLESS : public QWidget, public ProfileEditor {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit EditTrojanVLESS(QWidget *parent = nullptr);
|
|
|
|
~EditTrojanVLESS() override;
|
|
|
|
void onStart(QSharedPointer<NekoRay::ProxyEntity> _ent) override;
|
|
|
|
bool onEnd() override;
|
|
|
|
private:
|
|
Ui::EditTrojanVLESS *ui;
|
|
QSharedPointer<NekoRay::ProxyEntity> ent;
|
|
};
|
|
|
|
|