#ifndef _XCAFSchema_DBC_VArrayOfExtCharacter_HeaderFile #include #endif #ifndef _DBC_VArrayOfExtCharacter_HeaderFile #include #endif #include #ifndef _Storage_Schema_HeaderFile #include #endif #ifndef _Storage_stCONSTclCOM_HeaderFile #include #endif void XCAFSchema_DBC_VArrayOfExtCharacter::SWrite(const DBC_VArrayOfExtCharacter& pp, Storage_BaseDriver& f, const Handle(Storage_Schema)& theSchema) { Standard_Integer i; f.BeginWriteObjectData(); f.PutInteger(pp.Length()); for (i = 0; i < pp.Length(); i++) { f.PutExtCharacter(pp.Value(i)); } f.EndWriteObjectData(); } void XCAFSchema_DBC_VArrayOfExtCharacter::SRead(DBC_VArrayOfExtCharacter& pp, Storage_BaseDriver& f, const Handle(Storage_Schema)& theSchema) { Standard_Integer size = 0; f.BeginReadObjectData(); f.GetInteger(size); pp.Resize(size); for (Standard_Integer j = 0; j < size; j++) { Standard_ExtCharacter par; f.GetExtCharacter(par); pp.SetValue(j,par); } f.EndReadObjectData(); }