예제 #1
0
파일: mytime.cpp 프로젝트: zykis/plan
bool MyTime::operator ==(const MyTime t) const
{
    return ((this->days() == t.days()) && (this->hours() == t.hours()) && (this->minutes() == t.minutes()));
}
예제 #2
0
파일: mytime.cpp 프로젝트: zykis/plan
MyTime MyTime::operator -(const MyTime t) const
{
    return MyTime(this->days() - t.days(), this->hours() - t.hours(), this->minutes() - t.minutes());
}