Definition at line 250 of file qxmlstream.h.
#include <qxmlstream.h>
Public Member Functions |
|
| QXmlStreamEntityDeclaration () | |
| ~QXmlStreamEntityDeclaration () | |
| QXmlStreamEntityDeclaration (const QXmlStreamEntityDeclaration &) | |
| QXmlStreamEntityDeclaration & | operator= (const QXmlStreamEntityDeclaration &) |
| QStringRef | name () const |
| QStringRef | notationName () const |
| QStringRef | systemId () const |
| QStringRef | publicId () const |
| QStringRef | value () const |
| bool | operator== (const QXmlStreamEntityDeclaration &other) const |
| bool | operator!= (const QXmlStreamEntityDeclaration &other) const |
Friends |
|
| class | QXmlStreamReaderPrivate |
| QXmlStreamEntityDeclaration& operator= | ( | const QXmlStreamEntityDeclaration & | ) |
| QStringRef name | ( | ) | const [inline] |
| QStringRef notationName | ( | ) | const [inline] |
| QStringRef systemId | ( | ) | const [inline] |
| QStringRef publicId | ( | ) | const [inline] |
| QStringRef value | ( | ) | const [inline] |
| bool operator== | ( | const QXmlStreamEntityDeclaration & | other | ) | const [inline] |
Definition at line 265 of file qxmlstream.h.
{
return (name() == other.name()
&& notationName() == other.notationName()
&& systemId() == other.systemId()
&& publicId() == other.publicId()
&& value() == other.value());
}
| bool operator!= | ( | const QXmlStreamEntityDeclaration & | other | ) | const [inline] |
Definition at line 272 of file qxmlstream.h.
{ return !operator==(other); }
friend class QXmlStreamReaderPrivate
[friend] |
Definition at line 254 of file qxmlstream.h.