mirror of
https://github.com/Qv2ray/Qv2ray.git
synced 2025-05-19 18:30:34 +08:00
22 lines
409 B
C++
22 lines
409 B
C++
#ifndef CONFEDIT_H
|
|
#define CONFEDIT_H
|
|
|
|
#include <QDialog>
|
|
#include "ui_w_ConnectionEditWindow.h"
|
|
|
|
namespace Hv2ray::Ui
|
|
{
|
|
class ConnectionEditWindow : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ConnectionEditWindow(QWidget *parent = nullptr);
|
|
~ConnectionEditWindow();
|
|
|
|
private:
|
|
Ui_ConnectionEditWindow *ui;
|
|
};
|
|
}
|
|
#endif // CONFEDIT_H
|