1
0
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:
bugmaster
2011-03-16 07:30:28 +00:00
committed by bugmaster
parent 4903637061
commit 7fd59977df
16375 changed files with 3882564 additions and 0 deletions

33
src/Message/Message_Printer.cxx Executable file
View 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 );
}