Qt Cryptographic Architecture
|
#include <QtCrypto>
Public Member Functions | |
CertificateInfoPair () | |
CertificateInfoPair (const CertificateInfoType &type, const QString &value) | |
CertificateInfoPair (const CertificateInfoPair &from) | |
bool | operator!= (const CertificateInfoPair &other) const |
CertificateInfoPair & | operator= (const CertificateInfoPair &from) |
bool | operator== (const CertificateInfoPair &other) const |
CertificateInfoType | type () const |
QString | value () const |
One entry in a certificate information list.
QCA::CertificateInfoPair::CertificateInfoPair | ( | ) |
Standard constructor.
QCA::CertificateInfoPair::CertificateInfoPair | ( | const CertificateInfoType & | type, |
const QString & | value | ||
) |
Construct a new pair.
type | the type of information stored in this pair |
value | the value of the information to be stored |
QCA::CertificateInfoPair::CertificateInfoPair | ( | const CertificateInfoPair & | from | ) |
Standard copy constructor.
from | the information pair to copy from |
CertificateInfoPair& QCA::CertificateInfoPair::operator= | ( | const CertificateInfoPair & | from | ) |
Standard assignment operator.
from | the information pair to assign from |
CertificateInfoType QCA::CertificateInfoPair::type | ( | ) | const |
The type of information stored in the pair.
QString QCA::CertificateInfoPair::value | ( | ) | const |
The value of the information stored in the pair.
bool QCA::CertificateInfoPair::operator== | ( | const CertificateInfoPair & | other | ) | const |
Comparison operator.
other | the certificate information pair to compare with this certificate information pair. |
|
inline |
Inequality operator.
other | the certificate information pair to compare with this certificate information pair. |