mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
Integration of OCCT 6.5.0 from SVN
This commit is contained in:
33
src/Message/Message_Printer.cxx
Executable file
33
src/Message/Message_Printer.cxx
Executable file
@@ -0,0 +1,33 @@
|
||||
// File: Message_Printer.cxx
|
||||
// Created: Sat Jan 6 19:26:55 2001
|
||||
// Author: OCC Team
|
||||
// Copyright: Open CASCADE S.A. 2005
|
||||
|
||||
#include <Message_Printer.ixx>
|
||||
|
||||
#include <TCollection_AsciiString.hxx>
|
||||
#include <TCollection_ExtendedString.hxx>
|
||||
|
||||
//=======================================================================
|
||||
//function : Send
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
void Message_Printer::Send (const Standard_CString theString,
|
||||
const Message_Gravity theGravity,
|
||||
const Standard_Boolean putEndl) const
|
||||
{
|
||||
Send ( TCollection_ExtendedString(theString), theGravity, putEndl );
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : Send
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
void Message_Printer::Send (const TCollection_AsciiString& theString,
|
||||
const Message_Gravity theGravity,
|
||||
const Standard_Boolean putEndl) const
|
||||
{
|
||||
Send ( TCollection_ExtendedString(theString), theGravity, putEndl );
|
||||
}
|
Reference in New Issue
Block a user