From 49c116b0a9d6ad26dae0d5ec915ea6f7fe5684f4 Mon Sep 17 00:00:00 2001
From: LAPTOP-SNT8I5JK\Boounion <Chenluhua@qq.com>
Date: 星期六, 13 九月 2025 11:34:40 +0800
Subject: [PATCH] Merge branch 'liuyang'

---
 SourceCode/Bond/SGMeasurement/ProductResultStorage.h |   18 ++++++++++++++++++
 1 files changed, 18 insertions(+), 0 deletions(-)

diff --git a/SourceCode/Bond/SGMeasurement/ProductResultStorage.h b/SourceCode/Bond/SGMeasurement/ProductResultStorage.h
new file mode 100644
index 0000000..6165555
--- /dev/null
+++ b/SourceCode/Bond/SGMeasurement/ProductResultStorage.h
@@ -0,0 +1,18 @@
+锘�#pragma once
+#include <array>
+
+class CProductResultStorage
+{
+public:
+	CProductResultStorage();
+    ~CProductResultStorage() = default;
+
+    void SaveAnalyzeResult(const CString& strProductID, const std::array<double, 4>& result);
+
+private:
+    CString MakeResultCsvPath(const CString& strFileName);
+    BOOL AppendCsvWithHeader(const CString& strFilePath, const CString& strHeader, const CString& strBody);
+
+    CString m_strBaseResultDir;
+};
+

--
Gitblit v1.9.3