#include <XMLNamespace.h>
Public Member Functions | |
CXMLNameSpace (void) | |
CXMLNameSpace (const std::string &prefix, const std::string &href) | |
CXMLNameSpace (xmlNs *ns) | |
virtual | ~CXMLNameSpace (void) |
Data Fields | |
std::string | m_nsPrefix |
std::string | m_nsHref |
|
Definition at line 12 of file XMLNamespace.cpp. References m_nsHref, and m_nsPrefix.
00012 { 00013 this->m_nsPrefix = ""; 00014 this->m_nsHref = ""; 00015 } |
|
Definition at line 21 of file XMLNamespace.cpp. References m_nsHref, and m_nsPrefix.
00021 { 00022 this->m_nsPrefix = prefix; 00023 this->m_nsHref = href; 00024 } |
|
Definition at line 30 of file XMLNamespace.cpp. References m_nsHref, and m_nsPrefix.
00030 { 00031 this->m_nsHref = std::string((char*)ns->href); 00032 this->m_nsPrefix = std::string((char*)ns->prefix); 00033 } |
|
Definition at line 39 of file XMLNamespace.cpp.
00039 { 00040 } |
|
Definition at line 37 of file XMLNamespace.h. Referenced by CXMLNameSpace(), and xml::CXMLDocument::evaluateXPathExpression(). |
|
Definition at line 36 of file XMLNamespace.h. Referenced by CXMLNameSpace(), and xml::CXMLDocument::evaluateXPathExpression(). |