Add SchemaVersion to RestoreDocFile to distinquish double from float binary

This commit is contained in:
jriegel
2013-09-23 13:13:50 +02:00
parent 718972e48a
commit abf1623f07
39 changed files with 78 additions and 70 deletions

View File

@@ -151,9 +151,9 @@ void PropertyFemMesh::SaveDocFile (Base::Writer &writer) const
_FemMesh->SaveDocFile(writer);
}
void PropertyFemMesh::RestoreDocFile(Base::Reader &reader)
void PropertyFemMesh::RestoreDocFile(Base::Reader &reader, const int DocumentSchema)
{
aboutToSetValue();
_FemMesh->RestoreDocFile(reader);
_FemMesh->RestoreDocFile(reader, DocumentSchema);
hasSetValue();
}