#ifndef SETCONFIG_H #define SETCONFIG_H #include <QDialog> #include "common/utils/SettingConfig.h" namespace Ui { class SetConfig; } class SetConfig : public QDialog { Q_OBJECT public: explicit SetConfig(QWidget *parent = nullptr); ~SetConfig(); void init(); private slots: void on_buttonBox_accepted(); private: Ui::SetConfig *ui; }; #endif // SETCONFIG_H