Exemple #1
0
bool QbFrac::operator ==(const QbFrac &other) const
{
    if (this->toString() == other.toString())
        return true;

    return false;
}
Exemple #2
0
QDebug operator <<(QDebug debug, const QbFrac &frac)
{
    debug.nospace() << frac.toString();

    return debug.space();
}