35     m_localPart(localPart)
 
   40   : m_prefix(rhs.m_prefix),
 
   41     m_localPart(rhs.m_localPart)
 
   62   return m_prefix + 
":" + m_localPart;
 
   82   m_localPart = localPart;
 
std::string m_prefix
The namespace prefix part of the qualified name. It must be associated with a namespace URI reference...
 
A class to deal with XML qualified names. 
 
void setPrefix(const std::string &prefix)
It sets the namespace prefix part of the qualified name. 
 
std::string m_localPart
The local part of the qualified name. 
 
void setLocalPart(const std::string &localPart)
It sets the local part of the qualified name. 
 
const std::string & getLocalPart() const 
It returns the local part of the qualified name. 
 
std::string getQualifiedName() const 
It returns the qualified name based on prefix and local part. 
 
QName & operator=(const QName &rhs)
Assignment operator. 
 
A class to be used to represent XML qualified names. 
 
const std::string & getPrefix() const 
It returns the namespace prefix part of the qualified name.