new-feature:1.添加带表达式内容的xml格式化。2.支持带特殊字符的读写,如& < > "。

This commit is contained in:
2024-09-14 00:02:48 +08:00
parent bb511d1bac
commit 6896fa5090
20 changed files with 332 additions and 95 deletions

View File

@@ -2,6 +2,7 @@
#define UHISTORY_H
#include <QDialog>
#include "history.h"
namespace Ui {
@@ -13,7 +14,7 @@ class CUIHistory : public QDialog
Q_OBJECT
public:
explicit CUIHistory(QWidget *parent, CHistory* his);
explicit CUIHistory(QWidget* parent, CHistory* his);
~CUIHistory();
private:
@@ -25,7 +26,7 @@ public:
QString cur_{};
private:
Ui::CUIHistory *ui;
Ui::CUIHistory* ui;
CHistory* his_{};
};