From ecd10e09a6d85b77204814b813c62691a9deec39 Mon Sep 17 00:00:00 2001 From: mrDarker <mr.darker@163.com> Date: 星期五, 06 六月 2025 17:58:14 +0800 Subject: [PATCH] 1. 通过文件读取多个设备的信号,并显示在界面 --- SourceCode/Bond/Servo/CSlot.h | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/SourceCode/Bond/Servo/CSlot.h b/SourceCode/Bond/Servo/CSlot.h index f7445aa..76461d8 100644 --- a/SourceCode/Bond/Servo/CSlot.h +++ b/SourceCode/Bond/Servo/CSlot.h @@ -27,7 +27,13 @@ void setName(const char* pszName); BOOL isEmpty(); CContext* getContext(); + CContext* getTempContext(); void setContext(CContext* pContext); + void serialize(CArchive& ar); + + private: + void WriteString(CArchive& ar, std::string& string); + void ReadString(CArchive& ar, std::string& string); private: int m_nPosition; @@ -35,6 +41,7 @@ MaterialsType m_materialsType; std::string m_strName; CContext* m_pContext; + CContext* m_pTempContext; BOOL m_bEnable; BOOL m_bLock; }; -- Gitblit v1.9.3