mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-08-01 03:13:35 +08: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:
@@ -117,18 +117,17 @@ void IGESGraph_ToolLineFontDefTemplate::OwnCheck
|
||||
|
||||
void IGESGraph_ToolLineFontDefTemplate::OwnDump
|
||||
(const Handle(IGESGraph_LineFontDefTemplate)& ent, const IGESData_IGESDumper& dumper,
|
||||
const Handle(Message_Messenger)& S, const Standard_Integer level) const
|
||||
Standard_OStream& S, const Standard_Integer level) const
|
||||
{
|
||||
Standard_Integer tempSubLevel = (level <= 4) ? 0 : 1;
|
||||
|
||||
S << "IGESGraph_LineFontDefTemplate" << Message_EndLine;
|
||||
|
||||
S << "Orientation : " << ent->Orientation() << Message_EndLine;
|
||||
S << "Subfigure Display Entity For Template Display : ";
|
||||
S << "IGESGraph_LineFontDefTemplate\n"
|
||||
<< "Orientation : " << ent->Orientation() << "\n"
|
||||
<< "Subfigure Display Entity For Template Display : ";
|
||||
dumper.Dump(ent->TemplateEntity(),S, tempSubLevel);
|
||||
S << Message_EndLine;
|
||||
S << "Length Between Successive Template Figure : " << ent->Distance()<<Message_EndLine;
|
||||
S << "Scale Factor for Subfigure : " << ent->Scale() << Message_EndLine;
|
||||
S << Message_EndLine;
|
||||
S << "\n"
|
||||
<< "Length Between Successive Template Figure : " << ent->Distance()<< "\n"
|
||||
<< "Scale Factor for Subfigure : " << ent->Scale() << "\n"
|
||||
<< std::endl;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user