friend CDumpContext& AFXAPI operator <<( CDumpContext& dc, COleDateTime timeSrc );
friend CArchive& AFXAPI operator <<( CArchive& ar, COleDateTime dateSrc );
friend CArchive& AFXAPI operator >>( CArchive& ar, COleDateTime& dateSrc );
Remarks
The COleDateTime insertion (<<) operator supports diagnostic dumping and storing to an archive. The extraction (>>) operator supports loading from an archive.
Example
COleDateTime 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;
COleDateTime Overview | Class Members | Hierarchy Chart
See Also CDumpContext, CArchive