From 19261d011387ec57d646decc945aadaf8913eeab Mon Sep 17 00:00:00 2001
From: LAPTOP-SNT8I5JK\Boounion <Chenluhua@qq.com>
Date: 星期一, 10 三月 2025 09:05:54 +0800
Subject: [PATCH] Merge branch 'clh'

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

diff --git a/SourceCode/Bond/Servo/CAttribute.h b/SourceCode/Bond/Servo/CAttribute.h
new file mode 100644
index 0000000..5c96b72
--- /dev/null
+++ b/SourceCode/Bond/Servo/CAttribute.h
@@ -0,0 +1,23 @@
+#pragma once
+
+
+namespace SERVO {
+	class CAttribute
+	{
+	public:
+		CAttribute();
+		CAttribute(const char* pszName, const char* pszValue, const char* pszDescription);
+		~CAttribute();
+
+	public:
+		std::string& getName();
+		std::string& getValue();
+		std::string& getDescription();
+
+	private:
+		std::string m_strName;
+		std::string m_strValue;
+		std::string m_strDescription;
+	};
+}
+

--
Gitblit v1.9.3