LAPTOP-SNT8I5JK\Boounion
2025-03-10 19261d011387ec57d646decc945aadaf8913eeab
SourceCode/Bond/Servo/CAttribute.cpp
对比新文件
@@ -0,0 +1,36 @@
#include "stdafx.h"
#include "CAttribute.h"
namespace SERVO {
   CAttribute::CAttribute()
   {
   }
   CAttribute::CAttribute(const char* pszName, const char* pszValue, const char* pszDescription)
   {
      m_strName = pszName;
      m_strValue = pszValue;
      m_strDescription = pszDescription;
   }
   CAttribute::~CAttribute()
   {
   }
   std::string& CAttribute::getName()
   {
      return m_strName;
   }
   std::string& CAttribute::getValue()
   {
      return m_strValue;
   }
   std::string& CAttribute::getDescription()
   {
      return m_strDescription;
   }
}