#include <SimpleSAXParser.h>
Public Member Functions | |
Attribute (const std::string &iKey, const std::string &iValue) | |
Attribute (const Attribute &attr) | |
bool | operator< (const Attribute &attribute) const |
Public Attributes | |
std::string | key |
std::string | value |
Definition at line 74 of file SimpleSAXParser.h.
SimpleSAXParser::Attribute::Attribute | ( | const std::string & | iKey, |
const std::string & | iValue | ||
) | [inline] |
Definition at line 79 of file SimpleSAXParser.h.
SimpleSAXParser::Attribute::Attribute | ( | const Attribute & | attr | ) | [inline] |
bool SimpleSAXParser::Attribute::operator< | ( | const Attribute & | attribute | ) | const [inline] |
Definition at line 87 of file SimpleSAXParser.h.
References key.
{ return this->key < attribute.key; }
std::string SimpleSAXParser::Attribute::key |
Definition at line 76 of file SimpleSAXParser.h.
Referenced by operator<(), SimpleSAXParser::parse(), and FWXMLConfigParser::pushConfig().
std::string SimpleSAXParser::Attribute::value |
Definition at line 77 of file SimpleSAXParser.h.
Referenced by FWXMLConfigParser::pushConfig().