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

См. также

Основные понятия

CArchive Class

CArchive Members

Hierarchy Chart

CArchive::IsLoading