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