#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() { } }