Beispiel #1
0
SLib::Interval Date::operator-(Date& d)
{
	SLib::Interval i;

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