CopperSpice API  1.9.1
QXmlStreamEntityDeclaration Class Reference

The QXmlStreamEntityDeclaration class represents a DTD entity declaration. More...

Public Methods

 QXmlStreamEntityDeclaration ()
 
 QXmlStreamEntityDeclaration (const QXmlStreamEntityDeclaration &other)
 
 ~QXmlStreamEntityDeclaration ()
 
QStringView name () const
 
QStringView notationName () const
 
bool operator!= (const QXmlStreamEntityDeclaration &other) const
 
QXmlStreamEntityDeclaration & operator= (const QXmlStreamEntityDeclaration &other)
 
bool operator== (const QXmlStreamEntityDeclaration &other) const
 
QStringView publicId () const
 
QStringView systemId () const
 
QStringView value () const
 

Related Functions

These are not member functions

typedef QXmlStreamEntityDeclarations
 

Detailed Description

The QXmlStreamEntityDeclaration class represents a DTD entity declaration. An entity declaration consists of a name(), a notationName(), a systemId(), a publicId(), and a value().

Constructor & Destructor Documentation

QXmlStreamEntityDeclaration::QXmlStreamEntityDeclaration ( )

Creates an empty entity declaration.

QXmlStreamEntityDeclaration::QXmlStreamEntityDeclaration ( const QXmlStreamEntityDeclaration &  other)

Creates a copy of other.

QXmlStreamEntityDeclaration::~QXmlStreamEntityDeclaration ( )

Destructs this entity declaration.

Method Documentation

QStringView QXmlStreamEntityDeclaration::name ( ) const
inline

Returns the entity name.

QStringView QXmlStreamEntityDeclaration::notationName ( ) const
inline

Returns the notation name.

bool QXmlStreamEntityDeclaration::operator!= ( const QXmlStreamEntityDeclaration &  other) const
inline

Compares this entity declaration with other and returns true if they are not equal, otherwise returns false.

QXmlStreamEntityDeclaration & QXmlStreamEntityDeclaration::operator= ( const QXmlStreamEntityDeclaration &  other)

Copy assigns from other and returns a reference to this object.

bool QXmlStreamEntityDeclaration::operator== ( const QXmlStreamEntityDeclaration &  other) const
inline

Compares this entity declaration with other and returns true if they are equal, otherwise returns false.

QStringView QXmlStreamEntityDeclaration::publicId ( ) const
inline

Returns the public identifier.

QStringView QXmlStreamEntityDeclaration::systemId ( ) const
inline

Returns the system identifier.

QStringView QXmlStreamEntityDeclaration::value ( ) const
inline

Returns the entity's value.

Friends And Related Function Documentation