From 9e25e06d7ec9d7cd1c31a9d30a8a018e2af63e3a Mon Sep 17 00:00:00 2001 From: LAPTOP-SNT8I5JK\Boounion <Chenluhua@qq.com> Date: 星期五, 29 八月 2025 11:28:16 +0800 Subject: [PATCH] 1.Port Unload Ready,事件的上报,EAP模拟程序观察验证数据; --- SourceCode/Bond/Servo/CVariable.h | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/SourceCode/Bond/Servo/CVariable.h b/SourceCode/Bond/Servo/CVariable.h index beeadd2..597b84d 100644 --- a/SourceCode/Bond/Servo/CVariable.h +++ b/SourceCode/Bond/Servo/CVariable.h @@ -9,7 +9,8 @@ U2, I2, A20, - A50 + A50, + L }; class CVariable @@ -28,7 +29,10 @@ std::string& getRemark(); void setValue(__int64 value); void setValue(const char* pszValue); + void setValue(std::vector<CVariable>& vars); std::string getValue(); + __int64 getIntValue(); + std::vector<CVariable>& getVarsValue(); private: unsigned int m_nVarialbeId; @@ -37,6 +41,7 @@ std::string m_strRemark; __int64 m_nValue; std::string m_strValue; + std::vector<CVariable> m_varsValue; }; } -- Gitblit v1.9.3