1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-26 10:19:45 +03:00
occt/src/Draw/Draw_Debug.cxx
dpasukhi 675bce58db 0033672: Coding - New line performance update
Auto-fix for std::endl to \n in the file-based stream
2024-04-14 10:17:17 +00:00

43 lines
1.4 KiB
C++

// Created on: 2010-06-02
// Created by: Peter KURNEV
// Copyright (c) 2010-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
#include <Draw.hxx>
#include <Standard_ErrorHandler.hxx>
#include <Standard_Failure.hxx>
// This file defines global functions not declared in any public header,
// intended for use from debugger prompt (Command Window in Visual Studio)
//! Execute given DRAW command
Standard_EXPORT const char* Draw_Eval (const char *theCommandStr)
{
if (theCommandStr == 0)
{
return "Error: null command string";
}
try {
OCC_CATCH_SIGNALS
Draw_Interpretor& aCommands = Draw::GetInterpretor();
aCommands.Eval (theCommandStr);
std::cout << aCommands.Result() << '\n';
return aCommands.Result();
}
catch (Standard_Failure const& anException)
{
return anException.GetMessageString();
}
}