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