예제 #1
0
파일: Date.cpp 프로젝트: smc314/SLib
SLib::Interval Date::operator-(Date& d)
{
	SLib::Interval i;

	i = this->Epoch() - d.Epoch();
	return i;
}