CTimeSpan::operator +, -

CTimeSpan operator +( CTimeSpan timeSpan ) const;

CTimeSpan operator -( CTimeSpan timeSpan ) const;

Remarks

These two operators allow you to add and subtract CTimeSpan objects to and from each other.

Example

// example for CTimeSpan::operator +, -
CTimeSpan ts1( 3, 1, 5, 12 ); // 3 days, 1 hour, 5 min, and 12 sec
CTimeSpan ts2( 100 ); // 100 seconds
CTimeSpan ts3 = ts1 + ts2;
ASSERT( ts3.GetSeconds() == 52 ); // 6 mins, 52 secs

CTimespan OverviewClass MembersHierarchy Chart