#pragma once namespace SERVO { class CAttribute { public: CAttribute(); CAttribute(const char* pszName, const char* pszValue, const char* pszDescription); ~CAttribute(); private: std::string m_strName; std::string m_strValue; std::string m_strDescription; }; }