#include #include RWHeaderSection_RWFileSchema::RWHeaderSection_RWFileSchema () {} void RWHeaderSection_RWFileSchema::ReadStep (const Handle(StepData_StepReaderData)& data, const Standard_Integer num, Handle(Interface_Check)& ach, const Handle(HeaderSection_FileSchema)& ent) const { // --- Number of Parameter Control --- if (!data->CheckNbParams(num,1,ach,"file_schema has not 1 parameter(s)")) return; // --- own field : schemaIdentifiers --- Handle(Interface_HArray1OfHAsciiString) aSchemaIdentifiers; Handle(TCollection_HAsciiString) aSchemaIdentifiersItem; Standard_Integer nsub1; nsub1 = data->SubListNumber(num, 1, Standard_False); if (nsub1 !=0) { Standard_Integer nb1 = data->NbParams(nsub1); aSchemaIdentifiers = new Interface_HArray1OfHAsciiString (1, nb1); for (Standard_Integer i1 = 1; i1 <= nb1; i1 ++) { Standard_Boolean stat1 = data->ReadString (nsub1,i1,"schema_identifiers",ach,aSchemaIdentifiersItem); if (stat1) aSchemaIdentifiers->SetValue(i1,aSchemaIdentifiersItem); } } else { ach->AddFail("Parameter #1 (schema_identifiers) is not a LIST"); } //--- Initialisation of the read entity --- if (!ach->HasFailed()) ent->Init(aSchemaIdentifiers); } void RWHeaderSection_RWFileSchema::WriteStep (StepData_StepWriter& SW, const Handle(HeaderSection_FileSchema)& ent) const { // --- own field : schemaIdentifiers --- SW.OpenSub(); for (Standard_Integer i1 = 1; i1 <= ent->NbSchemaIdentifiers(); i1 ++) { SW.Send(ent->SchemaIdentifiersValue(i1)); } SW.CloseSub(); }