1 out of 2 rated this helpful - 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;
extern CArchive ar;
if( ar.IsStoring() )
  ar << i;
else
  ar >> i;
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.