1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-24 13:50:49 +03:00

0030997: Foundation Classes - name correction of dump macros

This commit is contained in:
nds
2019-09-25 09:12:41 +03:00
committed by bugmaster
parent 8aafd5f9e3
commit 3de0f78449
40 changed files with 244 additions and 257 deletions

View File

@@ -977,11 +977,11 @@ void Bnd_Box::Dump () const
//=======================================================================
void Bnd_Box::DumpJson (Standard_OStream& theOStream, const Standard_Integer) const
{
DUMP_CLASS_BEGIN (theOStream, Bnd_Box);
OCCT_DUMP_CLASS_BEGIN (theOStream, Bnd_Box);
DUMP_FIELD_VALUES_NUMERICAL (theOStream, "CornerMin", 3, Xmin, Ymin, Zmin)
DUMP_FIELD_VALUES_NUMERICAL (theOStream, "CornerMax", 3, Xmax, Ymax, Zmax)
OCCT_DUMP_FIELD_VALUES_NUMERICAL (theOStream, "CornerMin", 3, Xmin, Ymin, Zmin)
OCCT_DUMP_FIELD_VALUES_NUMERICAL (theOStream, "CornerMax", 3, Xmax, Ymax, Zmax)
DUMP_FIELD_VALUE_NUMERICAL (theOStream, Gap);
DUMP_FIELD_VALUE_NUMERICAL (theOStream, Flags);
OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, Gap);
OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, Flags);
}