Definition at line 203 of file qxmlstream.h.
#include <qxmlstream.h>
Public Member Functions |
|
| QXmlStreamNamespaceDeclaration () | |
| QXmlStreamNamespaceDeclaration (const QXmlStreamNamespaceDeclaration &) | |
| QXmlStreamNamespaceDeclaration (const QString &prefix, const QString &namespaceUri) | |
| ~QXmlStreamNamespaceDeclaration () | |
| QXmlStreamNamespaceDeclaration & | operator= (const QXmlStreamNamespaceDeclaration &) |
| QStringRef | prefix () const |
| QStringRef | namespaceUri () const |
| bool | operator== (const QXmlStreamNamespaceDeclaration &other) const |
| bool | operator!= (const QXmlStreamNamespaceDeclaration &other) const |
Friends |
|
| class | QXmlStreamReaderPrivate |
| QXmlStreamNamespaceDeclaration | ( | const QString & | prefix, |
| const QString & | namespaceUri | ||
| ) |
| QXmlStreamNamespaceDeclaration& operator= | ( | const QXmlStreamNamespaceDeclaration & | ) |
| QStringRef prefix | ( | ) | const [inline] |
| QStringRef namespaceUri | ( | ) | const [inline] |
| bool operator== | ( | const QXmlStreamNamespaceDeclaration & | other | ) | const [inline] |
Definition at line 216 of file qxmlstream.h.
{
return (prefix() == other.prefix() && namespaceUri() == other.namespaceUri());
}
| bool operator!= | ( | const QXmlStreamNamespaceDeclaration & | other | ) | const [inline] |
Definition at line 219 of file qxmlstream.h.
{ return !operator==(other); }
friend class QXmlStreamReaderPrivate
[friend] |
Definition at line 207 of file qxmlstream.h.