1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0025188: Data Exchange, Step Export - Losing shapes after import

Check on null for description added to WriteStep methods
(for product, product_definition and product_definition_formation)
This commit is contained in:
ichesnok 2024-01-19 15:45:16 +00:00 committed by dpasukhi
parent ee8f2ea3c2
commit db976e0a59
4 changed files with 24 additions and 5 deletions

View File

@ -91,7 +91,14 @@ void RWStepBasic_RWProduct::WriteStep
// --- own field : description ---
SW.Send(ent->Description());
if (!ent->Description().IsNull())
{
SW.Send(ent->Description());
}
else
{
SW.SendUndef();
}
// --- own field : frameOfReference ---

View File

@ -78,7 +78,14 @@ void RWStepBasic_RWProductDefinition::WriteStep
// --- own field : description ---
SW.Send(ent->Description());
if (!ent->Description().IsNull())
{
SW.Send(ent->Description());
}
else
{
SW.SendUndef();
}
// --- own field : formation ---

View File

@ -71,7 +71,14 @@ void RWStepBasic_RWProductDefinitionFormation::WriteStep
// --- own field : description ---
SW.Send(ent->Description());
if (!ent->Description().IsNull())
{
SW.Send(ent->Description());
}
else
{
SW.SendUndef();
}
// --- own field : ofProduct ---

View File

@ -1,5 +1,3 @@
puts "TODO OCC25188 ALL: Error: File "
puts "========"
puts "OCC25168"
puts "========"