34 lines
536 B
C++
34 lines
536 B
C++
#ifndef BOARDSETTING_H
|
|
#define BOARDSETTING_H
|
|
|
|
#include <QWidget>
|
|
#include "global.h"
|
|
#include "ftpclient.h"
|
|
|
|
namespace Ui {
|
|
class CBoardSetting;
|
|
}
|
|
|
|
class CBoardSetting : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit CBoardSetting(QWidget *parent = nullptr);
|
|
~CBoardSetting();
|
|
|
|
private slots:
|
|
void on_Btn_Confirm_clicked();
|
|
|
|
private:
|
|
Ui::CBoardSetting *ui;
|
|
void initReadConfig();
|
|
|
|
QJsonArray m_arrayValue;
|
|
QJsonObject m_objValue;
|
|
|
|
void removeJsonObj(QJsonObject objValue);
|
|
};
|
|
|
|
#endif // BOARDSETTING_H
|