QXmlStreamNotationDeclaration Class Reference

QXmlStreamNotationDeclaration Class Reference

#include <qxmlstream.h>

Class Description

Definition at line 227 of file qxmlstream.h.

Public Member Functions

 QXmlStreamNotationDeclaration ()
 
 ~QXmlStreamNotationDeclaration ()
 
 QXmlStreamNotationDeclaration (const QXmlStreamNotationDeclaration &)
 
QXmlStreamNotationDeclarationoperator= (const QXmlStreamNotationDeclaration &)
 
QStringRef name () const
 
QStringRef systemId () const
 
QStringRef publicId () const
 
bool operator== (const QXmlStreamNotationDeclaration &other) const
 
bool operator!= (const QXmlStreamNotationDeclaration &other) const
 

Friends

class QXmlStreamReaderPrivate
 

Constructor & Destructor Documentation

Member Function Documentation

QStringRef name ( ) const
inline

Definition at line 237 of file qxmlstream.h.

237 { return m_name; }
QStringRef systemId ( ) const
inline

Definition at line 238 of file qxmlstream.h.

238 { return m_systemId; }
QStringRef publicId ( ) const
inline

Definition at line 239 of file qxmlstream.h.

239 { return m_publicId; }
bool operator== ( const QXmlStreamNotationDeclaration other) const
inline

Definition at line 240 of file qxmlstream.h.

240  {
241  return (name() == other.name() && systemId() == other.systemId()
242  && publicId() == other.publicId());
243  }
QStringRef publicId() const
Definition: qxmlstream.h:239
QStringRef name() const
Definition: qxmlstream.h:237
QStringRef systemId() const
Definition: qxmlstream.h:238
bool operator!= ( const QXmlStreamNotationDeclaration other) const
inline

Definition at line 244 of file qxmlstream.h.

245  { return !operator==(other); }
bool operator==(const QXmlStreamNotationDeclaration &other) const
Definition: qxmlstream.h:240

Friends And Related Function Documentation

friend class QXmlStreamReaderPrivate
friend

Definition at line 231 of file qxmlstream.h.


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