QByteArray toByteArray(type pValue);\
\
inline QByteArray operator+(type pEnum, const QByteArray& pValue)\
{\
return toByteArray(pEnum) + pValue;\
}\
\
inline
bool operator==(
const QByteArray& pValue, type pEnum)\
{\
return toByteArray(pEnum) == pValue;\
}\
\
inline
bool operator!=(
const QByteArray& pValue, type pEnum)\
{\
return !(pValue == pEnum);\
}
bool operator!=(const CVCertificate &pLeft, const CVCertificate &pRight)
Definition: CVCertificate.h:80
bool operator==(const CVCertificate &pLeft, const CVCertificate &pRight)
Definition: CVCertificate.h:74