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

@@ -100,13 +100,13 @@ void IGESBasic_ToolExternalRefFileName::OwnCheck
void IGESBasic_ToolExternalRefFileName::OwnDump
(const Handle(IGESBasic_ExternalRefFileName)& 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_ExternalRefFileName" << Message_EndLine;
S << "External Reference File Identifier : ";
S << "IGESBasic_ExternalRefFileName\n"
<< "External Reference File Identifier : ";
IGESData_DumpString(S,ent->FileId());
S << Message_EndLine;
S << "External Reference Symbolic Name : ";
S << "\n"
<< "External Reference Symbolic Name : ";
IGESData_DumpString(S,ent->ReferenceName());
S << Message_EndLine;
S << std::endl;
}