mirror of
https://github.com/Qv2ray/Qv2ray.git
synced 2025-05-20 10:50:23 +08:00
31 lines
466 B
C++
31 lines
466 B
C++
#ifndef IMPORTCONF_H
|
|
#define IMPORTCONF_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui
|
|
{
|
|
class importConf;
|
|
}
|
|
|
|
class importConf : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit importConf(QWidget *parent = nullptr);
|
|
void savefromFile(QString path, QString alias);
|
|
~importConf();
|
|
|
|
private slots:
|
|
void on_pushButton_clicked();
|
|
void on_buttonBox_accepted();
|
|
signals:
|
|
void updateConfTable();
|
|
|
|
private:
|
|
Ui::importConf *ui;
|
|
};
|
|
|
|
#endif // IMPORTCONF_H
|