示例#1
0
文件: Date.cpp 项目: smc314/SLib
SLib::Interval Date::operator-(Date& d)
{
	SLib::Interval i;

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