From 980d4fc1690b4f8a81dc65e8573d2898f34a406f Mon Sep 17 00:00:00 2001
From: LAPTOP-SNT8I5JK\Boounion <Chenluhua@qq.com>
Date: 星期五, 21 三月 2025 09:49:26 +0800
Subject: [PATCH] 1.加入连接图示

---
 SourceCode/Bond/Servo/CEquipment.h |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/SourceCode/Bond/Servo/CEquipment.h b/SourceCode/Bond/Servo/CEquipment.h
index 1df97fd..aa9883e 100644
--- a/SourceCode/Bond/Servo/CEquipment.h
+++ b/SourceCode/Bond/Servo/CEquipment.h
@@ -15,6 +15,8 @@
 #include "CEqVCREnableStep.h"
 #include <vector>
 #include <map>
+#include <list>
+#include "CPanel.h"
 
 
 namespace SERVO {
@@ -107,6 +109,7 @@
 	protected:
 		inline void Lock() { EnterCriticalSection(&m_criticalSection); }
 		inline void Unlock() { LeaveCriticalSection(&m_criticalSection); }
+		void addPanelToList(CPanel* pPanel);
 
 	protected:
 		EquipmentListener m_listener;
@@ -119,6 +122,8 @@
 		MemoryBlock m_blockWriteBit;
 		std::vector<CPin*> m_inputPins;
 		std::vector<CPin*> m_outputPins;
+		std::list<CPanel*> m_panelList;
+
 
 		// 以下为从CC-Link读取到的Bit标志位
 	private:

--
Gitblit v1.9.3