LAPTOP-SNT8I5JK\Boounion
2025-03-10 19261d011387ec57d646decc945aadaf8913eeab
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;
   };
}