mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Class Standard_BaseDriver is inherited from Standard_Transient, its descendants are updated accordingly. Handle is used to manipulate objects of this class and its descendants (instead of references or raw pointers) to ensure automatic destruction. Added test bugs caf bug31546 Related: - Standard_OVERRIDE is added in declarations of virtual methods in descendants of Storage_BaseDriver - Methods operator << and operator >> are removed in descendants of Storage_BaseDriver (they repeat the same methods inherited from the base class) - Typedef PCDM_BaseDriverPointer is marked as deprecated - Unused class DDI_Ostream is removed - Private field Standard_Transient::count is renamed to myRefCount_ to avoid compiler warnings if the same name is used within the scope of a descendant class - Output of meaningful error messages is restored in DRAW commands fsdread and fsdwrite
17 lines
634 B
Plaintext
17 lines
634 B
Plaintext
puts "# ======================================================================"
|
|
puts "# 0029355: OCCT 6.9.1 persistence restored in OCCT 7.2.0 not working"
|
|
puts "# ======================================================================"
|
|
|
|
pload OCAF MODELING
|
|
|
|
puts ""
|
|
puts "# Check reading of shape from FSD archive"
|
|
fsdread [locate_data_file bug29355.fsd] a
|
|
checkshape a
|
|
checknbshapes a -face 14 -solid 0 -edge 39 -vertex 26
|
|
|
|
puts ""
|
|
puts "# Check that reading fails with expected message on truncated file"
|
|
puts "REQUIRED 29355 ALL: Storage error: the section is not found"
|
|
catch {fsdread [locate_data_file bug29355_truncated.fsd] a}
|