Share via


CTime::operators <<, >>

friend CDumpContext& AFXAPI operator<<( CDumpContext& dc**, CTime** time );

friend CArchive& AFXAPI operator<<( CArchive& ar**, CTime** time );

friend CArchive& AFXAPI operator>>( CArchive& ar**, CTime&** rtime );

Remarks

The CTime insertion (<<) operator supports diagnostic dumping and storing to an archive. The extraction (>>) operator supports loading from an archive.

When you send a CTime object to the dump context, the local time is displayed in readable date-time format.

Example

// example for CTime::operators <<, >>
CTime t( 1999, 3, 19, 22, 15, 0 ); // 10:15PM March 19, 1999
afxDump << t << "\n"; // Prints 'CTime("Fri Mar 19 22:15:00 1999")'.

extern CArchive ar;
if( ar.IsLoading() )
  ar >> t;
else
  ar << t;

CTime OverviewClass MembersHierarchy Chart

See Also   CArchive, CDumpContext