This topic has not yet been rated - Rate this topic

CArchive::IsStoring

Determines whether the archive is storing data.

BOOL IsStoring( ) const;

Nonzero if the archive is currently being used for storing; otherwise 0.

This member function is called by the Serialize functions of the archived classes.

If the IsStoring status of an archive is nonzero, then its IsLoading status is 0, and vice versa.

int i = 0;
if(ar.IsStoring())
   ar << i;
else
   ar >> i;			

Header: afx.h

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.