1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-14 13:30:48 +03:00

0031501: Foundation Classes, Message_Printer - remove theToPutEndl argument -- preparation

Operators << for Handle(Message_Messenger) are removed; their use is replaced by use of Message_Messenger::StreamBuffer
Message_Messenger has been replaced by Standard_OStream within Interface_InterfaceModel,IFSelect,IGES,STEP dump interfaces.
This commit is contained in:
abv
2020-04-30 15:45:31 +03:00
committed by bugmaster
parent 39c8dc708f
commit 0ebe5b0a7f
382 changed files with 3109 additions and 3576 deletions

View File

@@ -130,15 +130,14 @@ void IGESBasic_ToolHierarchy::OwnCheck
void IGESBasic_ToolHierarchy::OwnDump
(const Handle(IGESBasic_Hierarchy)& ent, const IGESData_IGESDumper& /*dumper*/,
const Handle(Message_Messenger)& S, const Standard_Integer /*level*/) const
Standard_OStream& S, const Standard_Integer /*level*/) const
{
S << "IGESBasic_Hierarchy" << Message_EndLine;
S << "Number of property values : " << ent->NbPropertyValues() << Message_EndLine;
S << "Line Font : " << ent->NewLineFont() << Message_EndLine;
S << "View Number : " << ent->NewView() << Message_EndLine;
S << "Entity level : " << ent->NewEntityLevel() << Message_EndLine;
S << "Blank status : " << ent->NewBlankStatus() << Message_EndLine;
S << "Line weight : " << ent->NewLineWeight() << Message_EndLine;
S << "Color number : " << ent->NewColorNum() << Message_EndLine;
S << "IGESBasic_Hierarchy\n"
<< "Number of property values : " << ent->NbPropertyValues() << "\n"
<< "Line Font : " << ent->NewLineFont() << "\n"
<< "View Number : " << ent->NewView() << "\n"
<< "Entity level : " << ent->NewEntityLevel() << "\n"
<< "Blank status : " << ent->NewBlankStatus() << "\n"
<< "Line weight : " << ent->NewLineWeight() << "\n"
<< "Color number : " << ent->NewColorNum() << std::endl;
}