#include <XMLAttribute.hpp>
Public Member Functions | |
| const std::string & | name () const |
| const std::string & | value () const |
| XMLAttribute (const std::string &name, const std::string &value) | |
| ~XMLAttribute () | |
Private Member Functions | |
| XMLAttribute (const XMLAttribute &xmlAttribute) | |
Private Attributes | |
| const std::string | __name |
| const std::string | __value |
Definition at line 30 of file XMLAttribute.hpp.
| XMLAttribute::XMLAttribute | ( | const XMLAttribute & | xmlAttribute | ) | [private] |
| XMLAttribute::XMLAttribute | ( | const std::string & | name, | |
| const std::string & | value | |||
| ) | [inline] |
| XMLAttribute::~XMLAttribute | ( | ) | [inline] |
| const std::string& XMLAttribute::name | ( | ) | const [inline] |
Definition at line 40 of file XMLAttribute.hpp.
References __name.
00041 { 00042 return __name; 00043 }
| const std::string& XMLAttribute::value | ( | ) | const [inline] |
Definition at line 46 of file XMLAttribute.hpp.
References __value.
00047 { 00048 return __value; 00049 }
const std::string XMLAttribute::__name [private] |
const std::string XMLAttribute::__value [private] |
1.5.6