示例#1
0
文件: qbfrac.cpp 项目: hpfn/webcamoid
bool QbFrac::operator ==(const QbFrac &other) const
{
    if (this->toString() == other.toString())
        return true;

    return false;
}
示例#2
0
文件: qbfrac.cpp 项目: hpfn/webcamoid
QDebug operator <<(QDebug debug, const QbFrac &frac)
{
    debug.nospace() << frac.toString();

    return debug.space();
}