QXmlStreamNamespaceDeclaration Class Reference

QXmlStreamNamespaceDeclaration Class Reference

#include <qxmlstream.h>

Class Description

Definition at line 204 of file qxmlstream.h.

Public Member Functions

 QXmlStreamNamespaceDeclaration ()
 
 QXmlStreamNamespaceDeclaration (const QXmlStreamNamespaceDeclaration &)
 
 QXmlStreamNamespaceDeclaration (const QString &prefix, const QString &namespaceUri)
 
 ~QXmlStreamNamespaceDeclaration ()
 
QXmlStreamNamespaceDeclarationoperator= (const QXmlStreamNamespaceDeclaration &)
 
QStringRef prefix () const
 
QStringRef namespaceUri () const
 
bool operator== (const QXmlStreamNamespaceDeclaration &other) const
 
bool operator!= (const QXmlStreamNamespaceDeclaration &other) const
 

Friends

class QXmlStreamReaderPrivate
 

Constructor & Destructor Documentation

QXmlStreamNamespaceDeclaration ( const QString prefix,
const QString namespaceUri 
)

Member Function Documentation

QStringRef prefix ( ) const
inline

Definition at line 215 of file qxmlstream.h.

215 { return m_prefix; }
QStringRef namespaceUri ( ) const
inline

Definition at line 216 of file qxmlstream.h.

216 { return m_namespaceUri; }
bool operator== ( const QXmlStreamNamespaceDeclaration other) const
inline

Definition at line 217 of file qxmlstream.h.

217  {
218  return (prefix() == other.prefix() && namespaceUri() == other.namespaceUri());
219  }
QStringRef prefix() const
Definition: qxmlstream.h:215
QStringRef namespaceUri() const
Definition: qxmlstream.h:216
bool operator!= ( const QXmlStreamNamespaceDeclaration other) const
inline

Definition at line 220 of file qxmlstream.h.

221  { return !operator==(other); }
bool operator==(const QXmlStreamNamespaceDeclaration &other) const
Definition: qxmlstream.h:217

Friends And Related Function Documentation

friend class QXmlStreamReaderPrivate
friend

Definition at line 208 of file qxmlstream.h.


The documentation for this class was generated from the following file: