00001 // SOAPAttribute.cpp: implementation of the SOAPAttribute class. 00002 // 00004 00005 #include "SOAPAttribute.h" 00006 00008 // Construction/Destruction 00010 00011 SOAPAttribute::SOAPAttribute() 00012 { 00013 00014 } 00015 00016 SOAPAttribute::~SOAPAttribute() 00017 { 00018 00019 } 00020 00021 std::string& SOAPAttribute::namespaceName() 00022 { 00023 return m_szNamespaceName; 00024 } 00025 00026 std::string& SOAPAttribute::accessor() 00027 { 00028 return m_szAccessor; 00029 } 00030 00031 std::string& SOAPAttribute::value() 00032 { 00033 return m_szValue; 00034 } 00035