コード例 #1
0
ファイル: question.cpp プロジェクト: SuRaMoN/lale
bool Question::operator < (const Question & that) const
{
    if(this->getQuestion() != that.getQuestion()) {
        return this->getQuestion() < that.getQuestion();
    }
    return this->getAnswer() < that.getAnswer();
}
コード例 #2
0
ファイル: question.cpp プロジェクト: SuRaMoN/lale
bool Question::operator == (const Question & that) const
{
    return this->getQuestion() == that.getQuestion() && this->getAnswer() == that.getAnswer();
}