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